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

html {
    scroll-behavior: smooth;
}

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #151520;
    --bg-widget: rgba(21, 21, 32, 0.85);
    --text-primary: #ffffff;
    --text-secondary: #b4b4c7;
    --text-muted: #6b6b7d;
    --accent-cyan: #00d9ff;
    --accent-purple: #9333ea;
    --accent-pink: #ec4899;
    --accent-blue: #3b82f6;
    --accent-gradient: linear-gradient(135deg, #00d9ff 0%, #9333ea 50%, #ec4899 100%);
    --accent-gradient-2: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    --ai-glow: rgba(0, 217, 255, 0.3);
    --ai-glow-strong: rgba(147, 51, 234, 0.5);
    --success: #10b981;
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow: rgba(0, 0, 0, 0.6);
    --line-color: rgba(255, 255, 255, 0.05);

    /* Layout system — single breakpoint: desktop = 1024px+ */
    --space-page: clamp(1rem, 4vw, 2rem);
    --space-section: clamp(3rem, 8vw, 8rem);
    --header-h: 56px;
    --header-h-desktop: 80px;
    --touch-min: 44px;
    --text-hero: clamp(2rem, 6vw + 0.5rem, 5.5rem);
    --text-h1: clamp(1.75rem, 4vw + 0.5rem, 3.5rem);
    --text-body: clamp(1rem, 0.25vw + 0.95rem, 1.125rem);
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    animation: fadeIn 0.6s ease-out;
    padding-top: var(--header-h);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.preloader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--accent-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: var(--accent-purple);
    animation-duration: 1.2s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    border-top-color: var(--accent-pink);
    animation-duration: 0.8s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.preloader-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.preloader-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
}

.preloader-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Touch-friendly button sizes for mobile */
button,
a.btn,
.nav-link,
.dropdown-link,
.mobile-nav-link {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(129, 140, 248, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(129, 140, 248, 0.5);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes logEntry {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10030;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0.625rem var(--space-page);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.5rem;
    overflow: visible;
    box-sizing: border-box;
    width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
    padding-right: 1rem;
    overflow: visible;
}

.logo-section {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: visible;
}

.logo-section:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.logo-image {
    height: 32px;
    width: auto;
    max-width: 100%;
    max-height: 32px;
    display: block;
    transition: transform 0.3s ease;
    object-fit: contain;
    object-position: left center;
}

.logo-section:hover .logo-image {
    transform: scale(1.05);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-section:hover .logo-icon {
    background: rgba(0, 217, 255, 0.15);
    border-color: rgba(0, 217, 255, 0.4);
    transform: rotate(180deg) scale(1.05);
}

.logo-icon .icon {
    font-size: 1.25rem;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.logo-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.logo-version {
    font-size: 0.6875rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.nav-center {
    display: none;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link span {
    position: relative;
    z-index: 1;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::before {
    width: calc(100% - 2rem);
}

.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::before {
    width: calc(100% - 2rem);
    background: var(--accent-gradient);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 12px;
    z-index: -1;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-icon {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.nav-dropdown:hover .dropdown-icon,
.nav-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
    color: var(--accent-cyan);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 100%);
    max-width: calc(100% - 2rem);
    background: rgba(21, 21, 32, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(0, 217, 255, 0.1);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

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

.dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dropdown-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-heading .heading-icon {
    font-size: 1.25rem;
    color: var(--accent-cyan);
}

.dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dropdown-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.625rem 0.875rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    padding-left: 2rem;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent-cyan);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    color: var(--text-primary);
    background: rgba(0, 217, 255, 0.1);
    padding-left: 2.5rem;
    transform: translateX(4px);
}

.dropdown-link:hover::before {
    opacity: 1;
}

/* Resources Dropdown - Single Column */
.resources-dropdown {
    width: 250px;
}

.resources-dropdown-content {
    grid-template-columns: 1fr;
    gap: 0;
}

.resources-dropdown .dropdown-column {
    gap: 0;
}

.resources-dropdown .dropdown-heading {
    display: none;
}

.resources-dropdown .dropdown-list {
    gap: 0.5rem;
}

.resources-dropdown .dropdown-link {
    padding: 0.875rem 1rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex-shrink: 0;
}

.nav-right .nav-lang-switch {
    display: none;
}

.mobile-menu-lang {
    display: flex;
    justify-content: center;
    margin: 1rem 0 0.5rem;
    padding: 0.25rem;
}

.nav-cta {
    display: none;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-gradient);
    color: var(--text-primary);
    border: none;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-cta:hover::before {
    opacity: 1;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.3), 0 0 40px rgba(147, 51, 234, 0.2);
}

.nav-cta .icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.nav-cta:hover .icon {
    transform: translateX(3px);
}

/* Mobile Menu Toggle — visible by default (mobile-first) */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: var(--touch-min);
    height: var(--touch-min);
    min-width: var(--touch-min);
    min-height: var(--touch-min);
    background: rgba(0, 217, 255, 0.12);
    border: 1px solid rgba(0, 217, 255, 0.45);
    border-radius: 10px;
    cursor: pointer;
    padding: 9px;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    margin: 0;
    display: block;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    width: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 10040;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile Menu Drawer */
.mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100dvh;
    padding-top: var(--safe-top);
    width: min(88vw, 380px);
    max-width: 400px;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10050;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.7);
    will-change: transform;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    border-radius: 50%;
    padding: 0;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(90deg);
}

.mobile-menu-close:active {
    transform: rotate(90deg) scale(0.95);
}

.mobile-menu-close .icon {
    font-size: 1.25rem;
    width: 20px;
    height: 20px;
}

.mobile-menu-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-link.active {
    background: rgba(0, 217, 255, 0.15);
    color: var(--accent-cyan);
    font-weight: 600;
}

.mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 1.5rem;
    background: var(--accent-gradient);
    color: var(--text-primary);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

.mobile-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.4);
}

.mobile-nav-cta:active {
    transform: translateY(0);
}

.mobile-nav-cta .icon {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.mobile-nav-cta:hover .icon {
    transform: translateX(4px);
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
}

.mobile-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-dropdown-icon {
    font-size: 0.875rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-secondary);
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.mobile-dropdown.active .mobile-dropdown-icon {
    transform: rotate(180deg);
    color: var(--accent-cyan);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: 1rem;
    margin-top: 0.25rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 2000px;
}

.mobile-dropdown-section {
    margin-bottom: 1.25rem;
}

.mobile-dropdown-section:last-child {
    margin-bottom: 0;
}

.mobile-dropdown-heading {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.75rem 0;
    padding: 0.5rem 0.75rem;
}

.mobile-dropdown-link {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 400;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0.25rem;
}

.mobile-dropdown-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Desktop header — min-width 1024px */
@media (min-width: 1024px) {
    body {
        padding-top: var(--header-h-desktop);
    }

    .navbar-container {
        display: flex;
        justify-content: space-between;
        padding: 1.25rem 3rem;
        gap: 3rem;
    }

    .logo-image {
        height: clamp(44px, 5vw, 64px);
        max-height: none;
        max-width: min(420px, 55vw);
    }

    .nav-center {
        display: flex;
    }

    .nav-cta {
        display: flex;
    }

    .nav-right .nav-lang-switch {
        display: flex;
    }

    .mobile-menu-toggle,
    .mobile-menu-overlay,
    .mobile-menu {
        display: none !important;
    }

    .mobile-menu-lang {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .dropdown-menu {
        width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        left: 0;
        transform: translateX(0);
        padding: 1.5rem;
    }
    
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        transform: translateX(0);
    }
    
    .dropdown-content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .dropdown-menu {
        width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        padding: 1.25rem;
        border-radius: 20px;
    }
    
    .dropdown-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dropdown-heading {
        font-size: 0.9375rem;
        padding-bottom: 0.875rem;
    }
    
    .dropdown-link {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}


/* Hero Container */
.hero-container {
    position: relative;
    min-height: calc(100vh - 80px);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Vertical Container Lines */
.vertical-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 calc((100% - 1600px) / 2);
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    z-index: 0;
    pointer-events: none;
}

.vertical-line {
    width: 1px;
    background: var(--line-color);
    position: relative;
}

.vertical-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--accent-cyan), transparent);
    opacity: 0.3;
    animation: lineGlow 3s ease-in-out infinite;
}

.vertical-line:nth-child(1) {
    animation-delay: 0s;
}

.vertical-line:nth-child(2) {
    animation-delay: 0.6s;
}

.vertical-line:nth-child(3) {
    animation-delay: 1.2s;
}

.vertical-line:nth-child(4) {
    animation-delay: 1.8s;
}

.vertical-line:nth-child(5) {
    animation-delay: 2.4s;
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-pink) 0%, transparent 70%);
    top: 50%;
    right: 20%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Left Section */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: clamp(0.875rem, 2.5vw, 3rem);
    padding-top: 0;
    animation: slideInLeft 0.8s ease-out;
    position: relative;
    z-index: 1;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-cyan);
    width: fit-content;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.badge-pulse {
    position: absolute;
    inset: 0;
    background: var(--accent-cyan);
    opacity: 0.1;
    border-radius: 50px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.2;
    }
}

.hero-badge .icon {
    font-size: 18px;
}

/* Hero Title */
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.title-line {
    font-size: clamp(2rem, 6vw + 0.5rem, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    animation: slideInLeft 0.8s ease-out backwards;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: baseline;
}

.title-line:nth-child(1) {
    animation-delay: 0.3s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-text {
    color: var(--text-primary);
}

.title-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    position: relative;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 600px;
    font-weight: 400;
    animation: slideUp 0.8s ease-out 0.5s backwards;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
    animation: slideUp 0.8s ease-out 0.6s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.7s backwards;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 217, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-color);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.btn .icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn:hover .icon {
    transform: scale(1.1);
}

/* Tech Stack Pills */
.tech-stack {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.8s backwards;
}

.tech-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.tech-pill:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

.tech-pill .icon {
    font-size: 16px;
}


/* Hero Right Section */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 0.8s ease-out;
    min-height: 600px;
    flex-shrink: 0;
}

/* AI Visualization */
.ai-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    --core-x: 250;
    --core-y: 300;
}

.visual-core {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.core-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: coreRotate 20s linear infinite;
}

.core-ring.ring-1 {
    width: 150px;
    height: 150px;
    border-color: var(--accent-cyan);
    opacity: 0.4;
}

.core-ring.ring-2 {
    width: 200px;
    height: 200px;
    border-color: var(--accent-purple);
    opacity: 0.3;
    animation-direction: reverse;
    animation-duration: 25s;
}

.core-center {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.5), 0 0 80px rgba(147, 51, 234, 0.3);
    animation: corePulse 3s ease-in-out infinite;
    position: relative;
}

.core-center::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: var(--accent-gradient);
    opacity: 0.3;
    filter: blur(20px);
    animation: corePulse 3s ease-in-out infinite;
}

.core-center .icon {
    font-size: 36px;
    color: var(--bg-primary);
    z-index: 1;
}

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

@keyframes corePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Floating Nodes */
.floating-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: nodeFloat 4s ease-in-out infinite;
    z-index: 1;
}

.floating-node.node-1 {
    top: 10%;
    left: 10%;
    border-color: var(--accent-cyan);
    animation-delay: 0s;
}

.floating-node.node-2 {
    top: 20%;
    right: 15%;
    border-color: var(--accent-purple);
    animation-delay: 0.8s;
}

.floating-node.node-3 {
    bottom: 25%;
    right: 10%;
    border-color: var(--accent-pink);
    animation-delay: 1.6s;
}

.floating-node.node-4 {
    bottom: 15%;
    left: 15%;
    border-color: var(--accent-cyan);
    animation-delay: 2.4s;
}

.floating-node.node-5 {
    top: 50%;
    left: 5%;
    border-color: var(--accent-blue);
    animation-delay: 3.2s;
}

.floating-node .icon {
    font-size: 24px;
    color: var(--text-primary);
    opacity: 0.9;
    display: block;
    width: 24px;
    height: 24px;
}

@keyframes nodeFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.connection-line {
    stroke-width: 2.5;
    fill: none;
    stroke-dasharray: 350;
    stroke-dashoffset: 350;
    animation: lineDraw 5s ease-in-out infinite;
    filter: drop-shadow(0 0 3px currentColor);
}

.connection-line.line-1 {
    animation-delay: 0s;
}

.connection-line.line-2 {
    animation-delay: 1s;
}

.connection-line.line-3 {
    animation-delay: 2s;
}

.connection-line.line-4 {
    animation-delay: 3s;
}

.connection-line.line-5 {
    animation-delay: 4s;
}

@keyframes lineDraw {
    0% {
        stroke-dashoffset: 350;
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0.4;
    }
}

/* System Widget */
.system-widget {
    background: var(--bg-widget);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px var(--shadow);
    animation: slideUp 0.8s ease-out 0.5s backwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.system-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.red {
    background: #ff5f56;
}

.control-dot.yellow {
    background: #ffbd2e;
}

.control-dot.green {
    background: #27c93f;
}

.widget-title {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--success);
}

.status-dot.online {
    background: var(--success);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.workflow-indicators {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
    position: relative;
}

.workflow-indicators::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.workflow-icon,
.workflow-center {
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
    padding: 0.75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.workflow-icon:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.workflow-icon .icon {
    font-size: 24px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.workflow-icon:hover .icon {
    transform: scale(1.1);
}

.workflow-center {
    width: 50px;
    height: 50px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.workflow-center:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.workflow-center .icon {
    font-size: 28px;
    color: var(--bg-primary);
    transition: transform 0.3s ease;
}

.system-log {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.log-entry {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    animation: logEntry 0.5s ease-out backwards;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.log-entry:hover {
    transform: translateX(5px);
    opacity: 1;
}

.log-entry:nth-child(1) {
    animation-delay: 0.6s;
}

.log-entry:nth-child(2) {
    animation-delay: 0.7s;
}

.log-entry:nth-child(3) {
    animation-delay: 0.8s;
}

.log-entry:nth-child(4) {
    animation-delay: 0.9s;
}

.log-time {
    font-family: 'Courier New', monospace;
    color: var(--text-muted);
    min-width: 70px;
}

.log-entry .icon {
    font-size: 18px;
    color: var(--text-secondary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.log-entry:hover .icon {
    transform: scale(1.2);
}

.log-entry .icon.success {
    color: var(--success);
    animation: pulse 2s ease-in-out infinite;
}

.log-text {
    flex: 1;
}

.system-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.3s ease;
    animation: slideUp 0.6s ease-out backwards;
}

.metric:nth-child(1) {
    animation-delay: 1s;
}

.metric:nth-child(2) {
    animation-delay: 1.1s;
}

.metric:nth-child(3) {
    animation-delay: 1.2s;
}

.metric:hover {
    transform: translateY(-5px);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.metric-value.success {
    color: var(--success);
}

/* Company Logos */
.company-logos {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem;
}

.company-logo {
    width: 96px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-secondary);
    animation: slideUp 0.6s ease-out backwards;
}

.company-logo:nth-child(1) {
    animation-delay: 1.1s;
}

.company-logo:nth-child(2) {
    animation-delay: 1.2s;
}

.company-logo:nth-child(3) {
    animation-delay: 1.3s;
}

.company-logo:hover {
    opacity: 1;
    filter: brightness(0) invert(1) opacity(1);
    transform: translateY(-5px) scale(1.05);
}

/* Footer Badge */
.footer-badge {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    z-index: 50;
    backdrop-filter: blur(10px);
    animation: slideInRight 0.8s ease-out 0.6s backwards;
    transition: all 0.3s ease;
}

.footer-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--text-secondary);
}

.footer-badge .icon {
    font-size: 18px;
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.footer-badge:hover .icon {
    transform: translateY(-3px);
}

/* Services Section */
.services-section {
    position: relative;
    min-height: 300vh;
    padding: 4rem 3rem;
    background: var(--bg-primary);
    overflow: visible;
}

/* Vertical Container Lines for Services */
.services-vertical-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 calc((100% - 1600px) / 2);
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    z-index: 0;
    pointer-events: none;
}

.services-vertical-line {
    width: 1px;
    background: var(--line-color);
    position: relative;
}

.services-vertical-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--accent-cyan), transparent);
    opacity: 0.3;
    animation: lineGlow 3s ease-in-out infinite;
}

.services-vertical-line:nth-child(1) { animation-delay: 0s; }
.services-vertical-line:nth-child(2) { animation-delay: 0.6s; }
.services-vertical-line:nth-child(3) { animation-delay: 1.2s; }
.services-vertical-line:nth-child(4) { animation-delay: 1.8s; }
.services-vertical-line:nth-child(5) { animation-delay: 2.4s; }

.services-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    align-items: start;
    z-index: 1;
}

/* Gradient Orbs for Services Section */
.services-section .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: orbFloat 25s ease-in-out infinite;
    z-index: 0;
}

.services-section .orb-services-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.services-section .orb-services-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-pink) 0%, transparent 70%);
    bottom: 20%;
    right: -5%;
    animation-delay: -10s;
}

.services-section .orb-services-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
    top: 60%;
    left: 30%;
    animation-delay: -20s;
}

/* Sticky Left Column */
.services-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 0;
    align-self: flex-start;
    z-index: 2;
}

.services-sticky::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-gradient);
    opacity: 0.3;
    border-radius: 2px;
}

.service-main {
    position: absolute;
    inset: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 300ms ease, transform 300ms ease;
}

@media (prefers-reduced-motion: reduce) {
    .service-main {
        transition: opacity 200ms ease;
        transform: none;
    }
}

.service-main.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--accent-gradient);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4), 0 0 40px rgba(147, 51, 234, 0.3);
    animation: serviceIconPulse 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: iconShine 3s ease-in-out infinite;
}

@keyframes iconShine {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes serviceIconPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4), 0 0 40px rgba(147, 51, 234, 0.3);
    }
    50% {
        transform: scale(1.08) rotate(2deg);
        box-shadow: 0 25px 70px rgba(0, 217, 255, 0.5), 0 0 50px rgba(147, 51, 234, 0.4);
    }
}

.service-icon .icon {
    font-size: 44px;
    color: var(--bg-primary);
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    animation: gradientShift 4s ease infinite;
    position: relative;
}

.service-description {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 480px;
    position: relative;
    padding-left: 1.5rem;
}

.service-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
    opacity: 0.6;
}

/* Ensure all service-main blocks have consistent styling */
.service-main[data-service="software"],
.service-main[data-service="marketing"],
.service-main[data-service="design"] {
    padding: 0;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.125rem 2.25rem;
    background: transparent;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-primary), var(--bg-primary)), var(--accent-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 14px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: fit-content;
}

.service-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 14px;
}

.service-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.service-cta:hover::before {
    opacity: 0.15;
}

.service-cta:hover::after {
    width: 300px;
    height: 300px;
}

.service-cta:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4), 0 0 30px rgba(147, 51, 234, 0.3);
}

.service-cta .icon {
    font-size: 22px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-cta:hover .icon {
    transform: translateX(8px) scale(1.1);
}

/* Scrolling Right Column */
.services-scroll {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.service-group {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 0;
    gap: 2.5rem;
}

.sub-service {
    display: flex;
    gap: 2.5rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.sub-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent-gradient);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sub-service::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    border-radius: 20px;
}

.sub-service:hover::before {
    transform: scaleY(1);
}

.sub-service:hover::after {
    opacity: 0.05;
}

.sub-service:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 217, 255, 0.4);
    transform: translateX(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 217, 255, 0.2);
}

.sub-service:active {
    transform: translateX(12px);
    transition: transform 0.1s ease;
}

.sub-service-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(147, 51, 234, 0.1));
    border: 2px solid;
    border-image: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(147, 51, 234, 0.2)) 1;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sub-service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 18px;
}

.sub-service:hover .sub-service-icon {
    transform: scale(1.1) rotate(5deg);
    border-image: linear-gradient(135deg, rgba(0, 217, 255, 0.6), rgba(147, 51, 234, 0.5)) 1;
}

.sub-service:hover .sub-service-icon::before {
    opacity: 0.2;
}

.sub-service-icon .icon {
    font-size: 32px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
    display: block;
    width: 32px;
    height: 32px;
}

.sub-service:hover .sub-service-icon .icon {
    transform: scale(1.15);
}

.sub-service-content {
    flex: 1;
}

.sub-service-title {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.sub-service:hover .sub-service-title {
    background-size: 200% 200%;
    animation: gradientShift 2s ease infinite;
}

.sub-service-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.sub-service:hover .sub-service-description {
    color: var(--text-primary);
}

/* Responsive Design */
/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .hero-left {
        order: 1;
        padding-top: 0;
    }
    
    .hero-right {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .title-line {
        font-size: 4.5rem;
    }
    
    .vertical-lines {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .hero-right {
        display: none;
    }
    
    .title-line {
        font-size: clamp(2rem, 8vw, 2.5rem);
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .ai-visualization {
        max-width: 100%;
        max-height: 350px;
        width: 100%;
        margin: 0 auto;
    }
    
    .visual-core {
        width: 150px;
        height: 150px;
    }
    
    .core-ring.ring-1 {
        width: 120px;
        height: 120px;
    }
    
    .core-ring.ring-2 {
        width: 150px;
        height: 150px;
    }
    
    .core-center {
        width: 60px;
        height: 60px;
    }
    
    .core-center .icon {
        font-size: 28px;
    }
    
    .floating-node {
        width: 50px;
        height: 50px;
    }
    
    .floating-node .icon {
        font-size: 20px;
    }
    
    .vertical-lines {
        padding: 0 1rem;
    }
    
    .footer-badge {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.75rem;
        padding: 0.625rem 1rem;
    }

    /* Services Section Mobile */
    .services-section {
        padding: 3rem 1.5rem;
        min-height: auto !important;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-sticky {
        position: relative !important; /* Disable sticky on mobile */
        height: auto;
        min-height: auto;
        padding: 0;
        align-self: stretch;
    }

    .service-main {
        position: relative !important; /* Stack on mobile */
        inset: auto;
        opacity: 1;
        transform: translateY(0) !important;
        pointer-events: auto;
        margin-bottom: 3rem;
        padding: 0;
    }

    .service-main:not(.active) {
        display: flex;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .service-title {
        font-size: 2.5rem;
    }

    .service-group {
        min-height: auto;
        padding: 2rem 0;
    }

    .sub-service {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .sub-service-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .sub-service-icon .icon {
        font-size: 24px;
    }

    .sub-service-title {
        font-size: 1.25rem;
    }
}

/* Tech Stack Section */
.tech-stack-section {
    position: relative;
    min-height: 100vh;
    padding: 8rem 2rem;
    overflow: hidden;
    background: var(--bg-primary);
}

.tech-stack-vertical-lines {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    pointer-events: none;
    z-index: 0;
}

.tech-stack-vertical-lines .vertical-line {
    width: 1px;
    height: 100%;
    background: var(--line-color);
    animation: verticalLineGlow 4s ease-in-out infinite;
}

.tech-stack-vertical-lines .vertical-line:nth-child(1) {
    animation-delay: 0s;
}

.tech-stack-vertical-lines .vertical-line:nth-child(2) {
    animation-delay: 1s;
}

.tech-stack-vertical-lines .vertical-line:nth-child(3) {
    animation-delay: 2s;
}

.tech-stack-vertical-lines .vertical-line:nth-child(4) {
    animation-delay: 3s;
}

.tech-stack-gradient-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.tech-stack-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

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

.tech-stack-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
}

.tech-stack-title .gradient-text-cyan {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tech Stack Tabs */
.tech-stack-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tech-tab {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.tech-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.tech-tab:hover {
    color: var(--text-primary);
}

.tech-tab.active {
    color: var(--text-primary);
}

.tech-tab.active::after {
    width: 100%;
}

/* Tech Tab Content */
.tech-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tech-tab-content.active {
    display: block;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.tech-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 160px;
}

.tech-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.tech-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 1;
}

.tech-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.1), 0 0 60px rgba(147, 51, 234, 0.1);
}

.tech-card:hover::before {
    opacity: 0.05;
}

.tech-card:hover::after {
    transform: scaleX(1);
}

.tech-logo {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.tech-card:hover .tech-logo {
    transform: scale(1.15) rotate(5deg);
}

.tech-logo .logo-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: none;
    transition: filter 0.5s ease, transform 0.5s ease;
}

.tech-card:hover .tech-logo .logo-img {
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5));
    transform: scale(1.1);
}

.tech-name {
    position: relative;
    z-index: 2;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    transition: all 0.5s ease;
}

.tech-card:hover .tech-name {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tech Stack CTA */
.tech-stack-cta {
    display: flex;
    justify-content: flex-start;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.tech-stack-cta .btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.tech-stack-cta .btn .icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.tech-stack-cta .btn:hover .icon {
    transform: translateX(4px);
}

/* Responsive Design for Tech Stack */
@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .tech-card {
        padding: 2rem 1.5rem;
        min-height: 140px;
    }

    .tech-logo {
        width: 56px;
        height: 56px;
    }

    .tech-logo .logo-img {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 768px) {
    .tech-stack-section {
        padding: 5rem 1.5rem;
    }

    .tech-stack-title {
        font-size: 2rem;
    }

    .tech-stack-tabs {
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .tech-tab {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .tech-card {
        padding: 1.75rem 1.25rem;
        min-height: 120px;
        gap: 1rem;
    }

    .tech-logo {
        width: 48px;
        height: 48px;
    }

    .tech-logo .logo-img {
        width: 48px;
        height: 48px;
    }

    .tech-name {
        font-size: 1rem;
    }

    .tech-stack-cta {
        justify-content: center;
        margin-top: 3rem;
    }

    .tech-stack-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 1.125rem 2rem;
    }
}

/* Engagement Model Section */
.engagement-model-section {
    position: relative;
    min-height: 100vh;
    padding: 8rem 2rem;
    overflow: hidden;
    background: var(--bg-primary);
}

.engagement-vertical-lines {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    pointer-events: none;
    z-index: 0;
}

.engagement-vertical-lines .vertical-line {
    width: 1px;
    height: 100%;
    background: var(--line-color);
    animation: verticalLineGlow 4s ease-in-out infinite;
}

.engagement-vertical-lines .vertical-line:nth-child(1) {
    animation-delay: 0s;
}

.engagement-vertical-lines .vertical-line:nth-child(2) {
    animation-delay: 1s;
}

.engagement-vertical-lines .vertical-line:nth-child(3) {
    animation-delay: 2s;
}

.engagement-vertical-lines .vertical-line:nth-child(4) {
    animation-delay: 3s;
}

.engagement-gradient-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.engagement-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.engagement-header {
    text-align: center;
    margin-bottom: 5rem;
}

.engagement-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.engagement-title .gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.engagement-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.engagement-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.engagement-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.engagement-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 1;
}

.engagement-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.15), 0 0 60px rgba(147, 51, 234, 0.1);
}

.engagement-card:hover::before {
    opacity: 0.05;
}

.engagement-card:hover::after {
    transform: scaleX(1);
}

.engagement-card.featured {
    border: 1px solid rgba(0, 217, 255, 0.3);
    background: rgba(0, 217, 255, 0.03);
}

.engagement-card.featured::before {
    opacity: 0.08;
}

.engagement-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent-gradient);
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    z-index: 2;
}

.engagement-card-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 20px;
    transition: all 0.5s ease;
}

.engagement-card:hover .engagement-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 217, 255, 0.2);
}

.engagement-card-icon .icon {
    font-size: 48px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.engagement-card-title {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
}

.engagement-card:hover .engagement-card-title {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.engagement-card-description {
    position: relative;
    z-index: 2;
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.engagement-features {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.engagement-card:hover .feature-item {
    color: var(--text-primary);
}

.feature-icon {
    font-size: 1.25rem;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

/* Responsive Design for Engagement Model */
@media (max-width: 1024px) {
    .engagement-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .engagement-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .engagement-model-section {
        padding: 5rem 1.5rem;
    }

    .engagement-header {
        margin-bottom: 3rem;
    }

    .engagement-title {
        font-size: 2rem;
    }

    .engagement-subtitle {
        font-size: 1.125rem;
    }

    .engagement-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    .engagement-card {
        padding: 2rem 1.5rem;
    }

    .engagement-card-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.5rem;
    }

    .engagement-card-icon .icon {
        font-size: 36px;
    }

    .engagement-card-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .engagement-card-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Featured Insights Section */
.featured-insights-section {
    position: relative;
    min-height: 100vh;
    padding: 8rem 2rem;
    overflow: hidden;
    background: var(--bg-primary);
}

.insights-vertical-lines {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    pointer-events: none;
    z-index: 0;
}

.insights-vertical-lines .vertical-line {
    width: 1px;
    height: 100%;
    background: var(--line-color);
    animation: verticalLineGlow 4s ease-in-out infinite;
}

.insights-vertical-lines .vertical-line:nth-child(1) {
    animation-delay: 0s;
}

.insights-vertical-lines .vertical-line:nth-child(2) {
    animation-delay: 1s;
}

.insights-vertical-lines .vertical-line:nth-child(3) {
    animation-delay: 2s;
}

.insights-vertical-lines .vertical-line:nth-child(4) {
    animation-delay: 3s;
}

.insights-gradient-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.insights-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 5rem;
    align-items: start;
}

.insights-left {
    position: sticky;
    top: 8rem;
}

.insights-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
}

.insights-label .label-icon {
    font-size: 1rem;
}

.insights-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.insights-title .gradient-text-cyan {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 50%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.insights-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.insights-cta {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.insights-cta .icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.insights-cta:hover .icon {
    transform: translateX(4px);
}

.insights-right {
    position: relative;
}

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

.insight-card,
a.insight-card {
    position: relative;
    min-height: 280px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.insight-card-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.insight-card.case-study .insight-card-glow {
    background: radial-gradient(circle at top right, rgba(147, 51, 234, 0.3), transparent 70%);
}

.insight-card.blog .insight-card-glow {
    background: radial-gradient(circle at top right, rgba(0, 217, 255, 0.3), transparent 70%);
}

.insight-card:hover .insight-card-glow {
    opacity: 1;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 2;
}

.insight-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2), 0 0 80px rgba(147, 51, 234, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.insight-card:hover::before {
    transform: scaleX(1);
}

.insight-card-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
}

.insight-card-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    width: fit-content;
}

.insight-card-label .label-icon {
    font-size: 0.875rem;
}

.insight-card.blog .insight-card-label {
    color: var(--accent-purple);
    background: rgba(147, 51, 234, 0.1);
    border-color: rgba(147, 51, 234, 0.2);
}

.insight-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    flex: 1;
}

.insight-card:hover .insight-card-title {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.insight-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.read-more {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.insight-card:hover .read-more {
    color: var(--accent-cyan);
}

.arrow-icon {
    font-size: 1rem;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
}

.insight-card:hover .arrow-icon {
    transform: translateX(4px);
}

/* Responsive Design for Featured Insights */
@media (max-width: 1024px) {
    .insights-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .insights-left {
        position: static;
        text-align: center;
    }

    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .insight-card {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .featured-insights-section {
        padding: 5rem 1.5rem;
    }

    .insights-container {
        gap: 2.5rem;
    }

    .insights-title {
        font-size: 2rem;
    }

    .insights-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

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

    .insight-card {
        min-height: 240px;
    }

    .insight-card-content {
        padding: 1.5rem;
    }

    .insight-card-title {
        font-size: 1rem;
    }
}

/* Discover Our Impact Across Industries Section */
.industries-section {
    position: relative;
    min-height: 100vh;
    padding: 8rem 2rem;
    overflow: hidden;
    background: var(--bg-primary);
}

.industries-vertical-lines {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    pointer-events: none;
    z-index: 0;
}

.industries-vertical-lines .vertical-line {
    width: 1px;
    height: 100%;
    background: var(--line-color);
    animation: verticalLineGlow 4s ease-in-out infinite;
}

.industries-gradient-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.industries-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.industries-header {
    text-align: center;
    margin-bottom: 5rem;
}

.industries-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.industries-label .label-icon {
    font-size: 1rem;
}

.industries-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.industries-title .gradient-text-cyan {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industries-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

.industry-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    aspect-ratio: 1;
    justify-content: center;
    cursor: pointer;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 217, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.industry-card-glow {
    position: absolute;
    inset: -3px;
    background: var(--accent-gradient);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(25px);
}

.industry-card:hover .industry-card-glow {
    opacity: 0.4;
}

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

.industry-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 217, 255, 0.6);
    box-shadow: 0 30px 60px rgba(0, 217, 255, 0.25), 0 0 100px rgba(147, 51, 234, 0.2), inset 0 0 50px rgba(0, 217, 255, 0.05);
    background: rgba(255, 255, 255, 0.05);
}

.industry-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card:hover::after {
    transform: scaleX(1);
}

.industry-icon {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(147, 51, 234, 0.1));
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 18px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    overflow: hidden;
}

.industry-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--accent-gradient);
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(15px);
}

.industry-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(147, 51, 234, 0.2));
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.25), rgba(147, 51, 234, 0.2));
    border-color: rgba(0, 217, 255, 0.6);
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 15px 35px rgba(0, 217, 255, 0.3), 0 0 50px rgba(147, 51, 234, 0.2);
}

.industry-card:hover .industry-icon::before {
    opacity: 0.6;
}

.industry-card:hover .industry-icon::after {
    opacity: 1;
}

.industry-icon .icon,
.industry-icon iconify-icon.icon {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 2.5rem;
    color: var(--accent-cyan);
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.3));
}

.industry-card:hover .industry-icon .icon {
    color: var(--text-primary);
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.6));
}

.industry-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.industry-card:hover .industry-name {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
}

/* Responsive Design for Industries Section */
@media (max-width: 1400px) {
    .industries-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

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

@media (max-width: 1024px) {
    .industries-section {
        padding: 6rem 2rem;
    }

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

    .industry-card {
        padding: 1.75rem 1.25rem;
        gap: 1rem;
    }

    .industry-icon {
        width: 65px;
        height: 65px;
    }

    .industry-icon .icon {
        font-size: 2.25rem;
    }

    .industry-name {
        font-size: 0.9375rem;
    }

    .industries-header {
        margin-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .industries-section {
        padding: 5rem 1.5rem;
    }

    .industries-title {
        font-size: 2rem;
    }

    .industries-subtitle {
        font-size: 1.125rem;
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.875rem;
    }

    .industry-card {
        padding: 1.5rem 1rem;
        gap: 1rem;
        border-radius: 18px;
    }

    .industry-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .industry-icon .icon {
        font-size: 2rem;
    }

    .industry-name {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Contact & Statistics Section */
.contact-stats-section {
    position: relative;
    padding: 8rem 2rem;
    background: var(--bg-primary);
    overflow: hidden;
}

.contact-vertical-lines {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    pointer-events: none;
    z-index: 0;
}

.contact-vertical-lines .vertical-line {
    width: 1px;
    height: 100%;
    background: var(--line-color);
    animation: verticalLineGlow 4s ease-in-out infinite;
}

.contact-gradient-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.contact-stats-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.contact-media {
    position: relative;
}

.media-container {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 32px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.media-container:hover {
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 30px 60px rgba(0, 217, 255, 0.15), 0 0 80px rgba(147, 51, 234, 0.1);
    transform: translateY(-4px);
}

.media-glow {
    position: absolute;
    inset: -2px;
    background: var(--accent-gradient);
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(30px);
}

.media-container:hover .media-glow {
    opacity: 0.3;
}

.media-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem;
}

.media-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
}

.media-icon .icon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
}

.media-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.media-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.play-button {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
}

.play-button .icon {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-left: 4px;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.4);
}

.media-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.contact-form-container:hover::before {
    transform: scaleX(1);
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.form-label .label-icon {
    font-size: 1rem;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.form-group {
    position: relative;
}

.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px; /* Prevents zoom on iOS */
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: vertical;
    min-height: 150px;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
    font-size: 16px; /* Prevents zoom on iOS */
}

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

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

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

.form-label-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.input-wrapper,
.select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon,
.select-icon {
    position: absolute;
    left: 1.25rem;
    font-size: 1.25rem;
    color: var(--accent-cyan);
    z-index: 2;
    pointer-events: none;
}

.form-input,
.form-select {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    color: var(--text-primary);
    font-size: 16px; /* Prevents zoom on iOS */
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1), 0 10px 30px rgba(0, 217, 255, 0.1);
    transform: translateY(-2px);
}

.input-wrapper:focus-within .input-icon,
.select-wrapper:focus-within .select-icon {
    color: var(--accent-cyan);
    transform: scale(1.1);
}

.form-select {
    appearance: none;
    cursor: pointer;
    padding-right: 3rem;
}

.select-arrow {
    position: absolute;
    right: 1.25rem;
    font-size: 1.25rem;
    color: var(--text-secondary);
    pointer-events: none;
    transition: all 0.3s ease;
}

.select-wrapper:focus-within .select-arrow {
    color: var(--accent-cyan);
    transform: rotate(180deg);
}

.form-select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.5rem;
}

.form-submit-btn {
    margin-top: 1rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

/* Statistics Section */
.statistics-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.stat-card-glow {
    position: absolute;
    inset: -2px;
    background: var(--accent-gradient);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(20px);
}

.stat-card:hover .stat-card-glow {
    opacity: 0.3;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2), 0 0 80px rgba(147, 51, 234, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 16px;
    transition: all 0.5s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(0, 217, 255, 0.2);
    border-color: rgba(0, 217, 255, 0.5);
    transform: scale(1.1) rotate(5deg);
}

.stat-icon .icon {
    font-size: 2rem;
    color: var(--accent-cyan);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Responsive Design for Contact & Statistics */
@media (max-width: 1024px) {
    .contact-stats-section {
        padding: 6rem 2rem;
    }

    .contact-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .statistics-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

@media (max-width: 768px) {
    .contact-stats-section {
        padding: 4rem 1.5rem;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .form-title {
        font-size: 2rem;
    }

    .form-subtitle {
        font-size: 1rem;
    }
    
    .statistics-section {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        font-size: 16px;
    }
    
    .media-container {
        aspect-ratio: 4 / 3;
        padding: 2rem;
    }
    
    .media-icon {
        width: 60px;
        height: 60px;
    }
    
    .media-icon .icon {
        font-size: 2rem;
    }
}

/* Footer Section */
.footer-section {
    position: relative;
    padding: 8rem 2rem 3rem;
    background: var(--bg-secondary);
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.footer-vertical-lines {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    pointer-events: none;
    z-index: 0;
}

.footer-vertical-lines .vertical-line {
    width: 1px;
    height: 100%;
    background: var(--line-color);
    animation: verticalLineGlow 4s ease-in-out infinite;
}

.footer-gradient-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 340px) repeat(4, minmax(0, 1fr));
    gap: 2rem 2.5rem;
    margin-bottom: 4rem;
    align-items: start;
}

.footer-branding {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-branding-actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 0.25rem;
}

.footer-branding-actions .footer-social {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-image {
    height: 56px;
    width: auto;
    max-width: 380px;
    display: block;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.footer-logo:hover .footer-logo-image {
    transform: scale(1.05);
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-icon {
    background: rgba(0, 217, 255, 0.2);
    border-color: rgba(0, 217, 255, 0.5);
    transform: scale(1.05);
}

.footer-logo-icon .icon {
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-logo-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.footer-logo-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-primary);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 100%;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.contact-info-item:hover {
    color: var(--accent-cyan);
    transform: translateX(4px);
}

.contact-icon {
    font-size: 1.25rem;
    color: var(--accent-cyan);
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1);
}

.footer-cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    width: fit-content;
}

.footer-cta-btn .icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.footer-cta-btn:hover .icon {
    transform: translateX(4px);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-heading .heading-icon {
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0;
    border-bottom: 1px solid transparent;
    position: relative;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.footer-link .link-icon {
    font-size: 0.875rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
    color: var(--accent-cyan);
}

.footer-link:hover {
    color: var(--accent-cyan);
    padding-left: 0.5rem;
}

.footer-link:hover::before {
    width: 100%;
}

.footer-link:hover .link-icon {
    opacity: 1;
    transform: translateX(0);
}

.footer-social {
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.social-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 1rem;
}

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

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link .icon {
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover {
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 217, 255, 0.3);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover .icon {
    color: var(--text-primary);
    transform: scale(1.1);
}

.footer-bottom {
    position: relative;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-link {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--accent-cyan);
}

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

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-section {
        padding: 6rem 2rem 2rem;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 2.5rem;
        margin-bottom: 4rem;
    }

    .footer-branding {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 4rem 1.5rem 2rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-title {
        font-size: 1.75rem;
    }

    .footer-description {
        font-size: 0.9375rem;
        max-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* ========================================
   Web Development Service Page Styles
   ======================================== */

/* Section Label Pattern (used across sections) */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-label .label-icon {
    font-size: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Web Dev Hero Section */

/* Web Dev Hero Section - Premium */
.web-dev-hero {
    min-height: 95vh;
    padding-top: 100px;
    position: relative;
}


/* Premium Visualization */
.web-dev-visualization-premium {
    position: relative;
    width: 100%;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-core-premium {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    z-index: 2;
}

.core-ring-premium {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.4;
    animation: rotateRingPremium 20s linear infinite;
}

.core-ring-premium.ring-1 {
    border-color: var(--accent-cyan);
    animation-duration: 15s;
}

.core-ring-premium.ring-2 {
    border-color: var(--accent-purple);
    animation-duration: 25s;
    animation-direction: reverse;
    inset: -30px;
}

.core-ring-premium.ring-3 {
    border-color: var(--accent-pink);
    animation-duration: 30s;
    inset: -60px;
    opacity: 0.2;
}

.core-center-premium {
    position: absolute;
    inset: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-widget);
    border-radius: 50%;
    border: 2px solid var(--accent-cyan);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 217, 255, 0.2);
}

.core-center-premium .icon {
    font-size: 4rem;
    color: var(--accent-cyan);
    animation: pulseIcon 3s ease-in-out infinite;
}

.floating-node-premium {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-widget);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    animation: floatNodePremium 8s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-node-premium:hover {
    transform: scale(1.1);
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 32px rgba(0, 217, 255, 0.3);
}

.node-glow {
    position: absolute;
    inset: -4px;
    background: var(--accent-gradient);
    border-radius: 20px;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.floating-node-premium:hover .node-glow {
    opacity: 0.4;
}

.floating-node-premium .icon {
    font-size: 2rem;
    color: var(--accent-cyan);
    z-index: 1;
}

.node-1 {
    top: 8%;
    left: 8%;
    animation-delay: 0s;
}

.node-2 {
    top: 15%;
    right: 12%;
    animation-delay: -2s;
}

.node-3 {
    bottom: 20%;
    right: 8%;
    animation-delay: -4s;
}

.node-4 {
    bottom: 12%;
    left: 12%;
    animation-delay: -1.5s;
}

.connection-lines-premium {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connection-line-premium {
    stroke-width: 3;
    fill: none;
    opacity: 0.5;
    animation: linePulsePremium 4s ease-in-out infinite;
    filter: drop-shadow(0 0 4px currentColor);
}

.line-1 {
    animation-delay: 0s;
}

.line-2 {
    animation-delay: 0.7s;
}

.line-3 {
    animation-delay: 1.4s;
}

.line-4 {
    animation-delay: 2.1s;
}

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

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes floatNodePremium {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-25px) rotate(5deg);
    }
    66% {
        transform: translateY(10px) rotate(-5deg);
    }
}

@keyframes linePulsePremium {
    0%, 100% {
        opacity: 0.3;
        stroke-width: 2;
    }
    50% {
        opacity: 0.7;
        stroke-width: 3;
    }
}

/* Web Dev Services Section */
.web-dev-services-section {
    position: relative;
    padding: 8rem 3rem;
    overflow: hidden;
}

.web-dev-services-vertical-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    pointer-events: none;
    z-index: 0;
}

.web-dev-services-vertical-lines .vertical-line {
    width: 1px;
    height: 100%;
    background: var(--line-color);
    opacity: 0.3;
}

.web-dev-services-gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.web-dev-services-gradient-orbs .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: orbFloat 25s ease-in-out infinite;
}

.web-dev-services-gradient-orbs .orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    top: 10%;
    left: -10%;
}

.web-dev-services-gradient-orbs .orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-pink) 0%, transparent 70%);
    bottom: 10%;
    right: -10%;
}

.web-dev-services-gradient-orbs .orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
    top: 50%;
    right: 20%;
}

.web-dev-services-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.web-dev-services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.web-dev-services-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-premium {
    position: relative;
    background: var(--bg-widget);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.service-card-premium:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--accent-cyan);
    box-shadow: 0 25px 80px rgba(0, 217, 255, 0.25);
}

.service-card-glow-premium {
    position: absolute;
    inset: -2px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 28px;
    filter: blur(30px);
    z-index: 0;
}

.service-card-premium:hover .service-card-glow-premium {
    opacity: 0.4;
}

.service-card-border {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: var(--accent-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card-premium:hover .service-card-border {
    opacity: 1;
}

.service-card-content-premium {
    position: relative;
    z-index: 1;
    padding: 3rem;
    background: transparent;
    border-radius: 28px;
}

.service-icon-premium {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.service-icon-bg {
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    border-radius: 20px;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.service-card-premium:hover .service-icon-bg {
    opacity: 0.2;
}

.service-icon-premium .icon {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card-premium:hover .service-icon-premium .icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title-premium {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.service-description-premium {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features-premium {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-features-premium li {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    padding-left: 2rem;
    position: relative;
    transition: color 0.3s ease;
}

.service-features-premium li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
    transition: transform 0.3s ease;
}

.service-card-premium:hover .service-features-premium li {
    color: var(--text-primary);
}

.service-card-premium:hover .service-features-premium li::before {
    transform: translateY(-50%) scale(1.3);
}

.service-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: auto;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-card-premium:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

.service-arrow .icon {
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

/* Why Choose Us Section */
.why-choose-us-section {
    position: relative;
    padding: 8rem 3rem;
    overflow: hidden;
}

.why-choose-vertical-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    pointer-events: none;
    z-index: 0;
}

.why-choose-vertical-lines .vertical-line {
    width: 1px;
    height: 100%;
    background: var(--line-color);
    opacity: 0.3;
}

.why-choose-gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.why-choose-gradient-orbs .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: orbFloat 25s ease-in-out infinite;
}

.why-choose-gradient-orbs .orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
    top: -10%;
    left: -10%;
}

.why-choose-gradient-orbs .orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
}

.why-choose-gradient-orbs .orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-pink) 0%, transparent 70%);
    top: 50%;
    left: 50%;
}

.why-choose-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 5rem;
}

.why-choose-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card-premium {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.feature-card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 30px 90px rgba(147, 51, 234, 0.2);
}

.feature-card-glow-premium {
    position: absolute;
    inset: -3px;
    background: var(--accent-gradient-2);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 32px;
    filter: blur(40px);
    z-index: 0;
}

.feature-card-premium:hover .feature-card-glow-premium {
    opacity: 0.4;
}

.feature-card-border-premium {
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1.5px;
    background: var(--accent-gradient-2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.feature-card-premium:hover .feature-card-border-premium {
    opacity: 1;
}

.feature-visual-premium {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.feature-visual-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.feature-card-premium:hover .feature-visual-bg {
    opacity: 0.8;
}

/* Tech Icons Scatter - Redesigned */
.tech-icons-scatter {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem;
}

.tech-icon-item {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.08);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.1);
}

.tech-icon-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--accent-gradient);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(8px);
}

.feature-card-premium:hover .tech-icon-item::before {
    opacity: 0.4;
}

.feature-card-premium:hover .tech-icon-item {
    transform: translateY(-5px) scale(1.05);
    background: rgba(0, 217, 255, 0.15);
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.2);
}

.tech-icon-item .icon {
    font-size: 2rem;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
}

.feature-card-premium:hover .tech-icon-item .icon {
    transform: scale(1.1);
}

.tech-icon-item:nth-child(1) {
    justify-self: start;
    align-self: start;
}

.tech-icon-item:nth-child(2) {
    justify-self: end;
    align-self: start;
}

.tech-icon-item:nth-child(3) {
    justify-self: start;
    align-self: end;
}

.tech-icon-item:nth-child(4) {
    justify-self: end;
    align-self: end;
}

/* Target Visual - Redesigned */
.target-visual {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-ring {
    position: absolute;
    inset: 0;
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--accent-purple), rgba(147, 51, 234, 0.3)) 1;
    border-radius: 50%;
    animation: targetPulse 4s ease-in-out infinite;
}

.target-ring.ring-1 {
    border-color: var(--accent-purple);
    opacity: 0.6;
    animation-delay: 0s;
}

.target-ring.ring-2 {
    inset: -40px;
    border-color: var(--accent-purple);
    opacity: 0.4;
    animation-delay: -1.3s;
}

.target-ring.ring-3 {
    inset: -80px;
    border-color: rgba(147, 51, 234, 0.3);
    opacity: 0.2;
    animation-delay: -2.6s;
}

.target-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(147, 51, 234, 0.1));
    border: 2px solid var(--accent-purple);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.4), inset 0 0 20px rgba(147, 51, 234, 0.2);
    transition: all 0.3s ease;
}

.feature-card-premium:hover .target-center {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px rgba(147, 51, 234, 0.6), inset 0 0 30px rgba(147, 51, 234, 0.3);
}

.target-center .icon {
    font-size: 2.5rem;
    color: var(--accent-purple);
    filter: drop-shadow(0 0 10px var(--accent-purple));
}

/* Agile Visual Premium - Redesigned */
.agile-visual-premium {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
}

.sprint-cards {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.sprint-card {
    position: relative;
    width: 70px;
    height: 90px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(236, 72, 153, 0.05));
    border: 2px solid rgba(236, 72, 153, 0.4);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.15);
}

.sprint-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--accent-pink);
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(10px);
}

.feature-card-premium:hover .sprint-card::before {
    opacity: 0.3;
}

.feature-card-premium:hover .sprint-card {
    transform: translateY(-8px);
    border-color: var(--accent-pink);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25), rgba(236, 72, 153, 0.15));
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.25);
}

.sprint-card:nth-child(1) {
    animation: sprintCardPulse 2.5s ease-in-out infinite;
    animation-delay: 0s;
}

.sprint-card:nth-child(2) {
    animation: sprintCardPulse 2.5s ease-in-out infinite;
    animation-delay: 0.4s;
}

.sprint-card:nth-child(3) {
    animation: sprintCardPulse 2.5s ease-in-out infinite;
    animation-delay: 0.8s;
}

.agile-icon-center {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.1));
    border: 2px solid var(--accent-pink);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
    transition: all 0.3s ease;
}

.feature-card-premium:hover .agile-icon-center {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.5);
}

.agile-icon-center .icon {
    font-size: 2.5rem;
    color: var(--accent-pink);
    filter: drop-shadow(0 0 10px var(--accent-pink));
    animation: agileRotate 6s linear infinite;
}

.feature-content-premium {
    position: relative;
    z-index: 1;
    padding: 3rem;
    background: rgba(10, 10, 15, 0.7);
}

.feature-icon-premium {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(147, 51, 234, 0.1);
    border: 2px solid rgba(147, 51, 234, 0.3);
    border-radius: 18px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card-premium:hover .feature-icon-premium {
    background: rgba(147, 51, 234, 0.2);
    border-color: var(--accent-purple);
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon-premium .icon {
    font-size: 2rem;
    color: var(--accent-purple);
}

.feature-title-premium {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.feature-description-premium {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-badge-premium {
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.feature-card-premium:hover .tech-badge-premium {
    background: rgba(147, 51, 234, 0.15);
    border-color: rgba(147, 51, 234, 0.4);
    color: var(--text-primary);
    transform: translateY(-2px);
}

@keyframes targetPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.03);
    }
}

@keyframes sprintCardPulse {
    0%, 100% {
        opacity: 0.8;
        transform: translateY(0) scaleY(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-5px) scaleY(1.05);
    }
}

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


/* CTA Banner Section */
.cta-banner-section {
    position: relative;
    padding: 8rem 3rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 10, 15, 1) 0%, rgba(21, 21, 32, 1) 100%);
}

.cta-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.cta-banner-background .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: orbFloat 25s ease-in-out infinite;
}

.cta-banner-background .orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
    top: -20%;
    left: -10%;
}

.cta-banner-background .orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.25) 0%, transparent 70%);
    bottom: -20%;
    right: -10%;
}

.cta-banner-background .orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.25) 0%, transparent 70%);
    top: 50%;
    right: 30%;
    transform: translateY(-50%);
}

.cta-banner-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-banner-card {
    position: relative;
    background: var(--bg-widget);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    border-radius: 40px;
    padding: 5rem;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.cta-card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(0, 217, 255, 0.2), rgba(147, 51, 234, 0.3));
    border-radius: 40px;
    opacity: 0.6;
    filter: blur(40px);
    z-index: 0;
    animation: ctaGlowPulse 4s ease-in-out infinite;
}

@keyframes ctaGlowPulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
}

.cta-card-border {
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.5), rgba(0, 217, 255, 0.5), rgba(147, 51, 234, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.8;
    z-index: 1;
}

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

.cta-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fbbf24;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
}

.cta-badge-premium:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(251, 191, 36, 0.3);
}

.cta-badge-premium .icon {
    font-size: 1.125rem;
}

.cta-banner-title-premium {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

.gradient-text-yellow {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-banner-description-premium {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0;
}

.cta-banner-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-banner-btn-premium {
    padding: 1.5rem 3.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.cta-banner-btn-secondary {
    padding: 1.5rem 3.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.cta-features {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.cta-feature-item .icon {
    color: #fbbf24;
    font-size: 1.25rem;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.5));
}

.cta-feature-item:hover {
    color: var(--text-primary);
}

.cta-feature-item:hover .icon {
    transform: scale(1.1);
}

/* Development Process Section */
.development-process-section {
    position: relative;
    padding: 8rem 3rem;
    overflow: hidden;
}

.process-vertical-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    pointer-events: none;
    z-index: 0;
}

.process-vertical-lines .vertical-line {
    width: 1px;
    height: 100%;
    background: var(--line-color);
    opacity: 0.3;
}

.process-gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.process-gradient-orbs .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: orbFloat 25s ease-in-out infinite;
}

.process-gradient-orbs .orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    top: 10%;
    left: -10%;
}

.process-gradient-orbs .orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-pink) 0%, transparent 70%);
    bottom: 10%;
    right: -10%;
}

.process-gradient-orbs .orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
    top: 50%;
    right: 30%;
}

.process-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 6rem;
}

.process-timeline-premium {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step-premium {
    position: relative;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.process-step-number-premium {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.process-step-number-premium span {
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.step-number-ring {
    position: absolute;
    inset: 0;
    border: 3px solid;
    border-image: var(--accent-gradient) 1;
    border-radius: 50%;
    animation: stepRingPulse 3s ease-in-out infinite;
}

.step-number-glow-premium {
    position: absolute;
    inset: -10px;
    background: var(--accent-gradient);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(25px);
    z-index: 0;
    animation: stepGlowPulse 3s ease-in-out infinite;
}

.process-connector {
    position: absolute;
    left: 60px;
    top: 120px;
    width: 2px;
    height: calc(100% + 4rem);
    background: var(--accent-gradient);
    opacity: 0.3;
    z-index: 1;
}

.process-step-premium:last-child .process-connector {
    display: none;
}

.process-step-card-premium {
    position: relative;
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 3.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.process-step-card-premium:hover {
    transform: translateX(15px);
    border-color: var(--accent-pink);
    box-shadow: 0 25px 80px rgba(236, 72, 153, 0.2);
}

.step-card-glow {
    position: absolute;
    inset: -2px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 28px;
    filter: blur(30px);
    z-index: 0;
}

.process-step-card-premium:hover .step-card-glow {
    opacity: 0.3;
}

.step-card-content {
    position: relative;
    z-index: 1;
}

.step-title-premium {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.step-description-premium {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.step-features-premium {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.process-step-card-premium:hover .step-feature-item {
    color: var(--text-primary);
}

.step-feature-item .icon {
    color: var(--accent-pink);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.process-step-card-premium:hover .step-feature-item .icon {
    transform: scale(1.2);
}

@keyframes stepRingPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes stepGlowPulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}

/* Responsive Styles for Web Dev Page - Premium */
@media (max-width: 1200px) {
    .web-dev-services-grid-premium,
    .why-choose-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title,
    .cta-banner-title-premium {
        font-size: 3.5rem;
    }
    
}

@media (max-width: 992px) {
    .web-dev-services-section,
    .why-choose-us-section,
    .cta-banner-section,
    .development-process-section {
        padding: 6rem 2rem;
    }
    
    .cta-banner-card {
        padding: 4rem;
    }
    
    .section-title,
    .cta-banner-title-premium {
        font-size: 3rem;
    }
    
    .web-dev-services-grid-premium,
    .why-choose-grid-premium {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .web-dev-visualization-premium {
        height: 500px;
    }
    
    .process-step-premium {
        gap: 2rem;
    }
    
    .process-step-number-premium {
        width: 100px;
        height: 100px;
    }
    
    .process-step-number-premium span {
        font-size: 2.5rem;
    }
    
    .process-connector {
        left: 50px;
    }
    
}

@media (max-width: 768px) {
    .web-dev-services-section,
    .why-choose-us-section,
    .cta-banner-section,
    .development-process-section {
        padding: 4rem 1.5rem;
    }
    
    .cta-banner-card {
        padding: 3rem 2rem;
        border-radius: 32px;
    }
    
    .cta-banner-title-premium {
        font-size: 2.5rem;
    }
    
    .cta-banner-description-premium {
        font-size: 1rem;
    }
    
    .cta-banner-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-banner-btn-premium,
    .cta-banner-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .section-title,
    .cta-banner-title-premium {
        font-size: 2.5rem;
    }
    
    .section-subtitle,
    .cta-banner-description-premium {
        font-size: 1rem;
    }
    
    .service-card-content-premium,
    .feature-content-premium {
        padding: 2rem;
    }
    
    .service-title-premium,
    .feature-title-premium,
    .step-title-premium {
        font-size: 1.5rem;
    }
    
    .process-step-card-premium {
        padding: 2rem;
    }
    
    .web-dev-visualization-premium {
        height: 400px;
    }
    
    .visual-core-premium {
        width: 120px;
        height: 120px;
    }
    
    .core-center-premium .icon {
        font-size: 3rem;
    }
    
    .floating-node-premium {
        width: 60px;
        height: 60px;
    }
    
    .floating-node-premium .icon {
        font-size: 1.5rem;
    }
    
    .process-step-premium {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-step-number-premium {
        width: 80px;
        height: 80px;
    }
    
    .process-step-number-premium span {
        font-size: 2rem;
    }
    
    .process-connector {
        display: none;
    }
    
    .feature-visual-premium {
        height: 200px;
    }
    
}

/* ============================================
   About Us Page Styles
   ============================================ */

/* About Hero Section */
.about-hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 6rem;
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.about-hero-background .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: orbFloat 25s ease-in-out infinite;
}

.about-hero-background .orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    top: -20%;
    left: -10%;
}

.about-hero-background .orb-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    bottom: -20%;
    right: -10%;
}

.about-hero-background .orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
    top: 50%;
    right: 30%;
    transform: translateY(-50%);
}

.about-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-hero-content {
    text-align: center;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: var(--bg-widget);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.about-hero-badge .icon {
    font-size: 1.2rem;
    color: var(--accent-cyan);
}

.about-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.about-hero-title .gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.about-stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-widget);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.about-stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mission & Vision Section */
.mission-vision-section {
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
}

.mission-vision-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.mission-vision-background .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: orbFloat 25s ease-in-out infinite;
}

.mission-vision-background .orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.25) 0%, transparent 70%);
    top: -20%;
    left: -10%;
}

.mission-vision-background .orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.25) 0%, transparent 70%);
    bottom: -20%;
    right: -10%;
}

.mission-vision-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card,
.vision-card {
    position: relative;
    padding: 4rem;
    background: var(--bg-widget);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    overflow: hidden;
}

.mission-card-glow,
.vision-card-glow {
    position: absolute;
    inset: -2px;
    border-radius: 32px;
    opacity: 0.5;
    filter: blur(40px);
    z-index: 0;
}

.mission-card-glow {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(59, 130, 246, 0.2));
}

.vision-card-glow {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(147, 51, 234, 0.2));
}

.mission-icon,
.vision-icon {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    margin-bottom: 2rem;
}

.mission-icon .icon,
.vision-icon .icon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
}

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

.mission-title,
.vision-title {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.mission-description,
.vision-description {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* About Values Section */
.about-values-section {
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
}

.about-values-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.about-values-background .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: orbFloat 25s ease-in-out infinite;
}

.about-values-background .orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
    top: -10%;
    left: 10%;
}

.about-values-background .orb-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.25) 0%, transparent 70%);
    bottom: -10%;
    right: 10%;
}

.about-values-background .orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-values-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.value-card {
    position: relative;
    padding: 3rem 2rem;
    background: var(--bg-widget);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.value-card-glow {
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    opacity: 0;
    filter: blur(30px);
    z-index: 0;
    transition: opacity 0.3s ease;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(147, 51, 234, 0.3));
}

.value-card:hover .value-card-glow {
    opacity: 0.6;
}

.value-icon-wrapper {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 18px;
}

.value-icon {
    font-size: 2rem;
    color: var(--accent-cyan);
}

.value-title {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-description {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* About Team Section */
.about-team-section {
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
}

.about-team-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.about-team-background .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: orbFloat 25s ease-in-out infinite;
}

.about-team-background .orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.25) 0%, transparent 70%);
    top: -20%;
    right: -10%;
}

.about-team-background .orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.25) 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
}

.about-team-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.team-role-card {
    position: relative;
    padding: 3rem 2rem;
    background: var(--bg-widget);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.team-role-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.team-role-glow {
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    opacity: 0;
    filter: blur(30px);
    z-index: 0;
    transition: opacity 0.3s ease;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(236, 72, 153, 0.3));
}

.team-role-card:hover .team-role-glow {
    opacity: 0.6;
}

.team-role-icon {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 18px;
}

.team-role-icon .icon {
    font-size: 2rem;
    color: var(--accent-cyan);
}

.team-role-title {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.team-role-description {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* About CTA Section */
.about-cta-section {
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
}

.about-cta-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.about-cta-background .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: orbFloat 25s ease-in-out infinite;
}

.about-cta-background .orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
    top: -20%;
    left: -10%;
}

.about-cta-background .orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.25) 0%, transparent 70%);
    bottom: -20%;
    right: -10%;
}

.about-cta-background .orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.25) 0%, transparent 70%);
    top: 50%;
    right: 30%;
    transform: translateY(-50%);
}

.about-cta-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.about-cta-card {
    position: relative;
    padding: 5rem 4rem;
    background: var(--bg-widget);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    border-radius: 40px;
    text-align: center;
    overflow: hidden;
}

.about-cta-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(0, 217, 255, 0.2), rgba(147, 51, 234, 0.3));
    border-radius: 40px;
    opacity: 0.6;
    filter: blur(40px);
    z-index: 0;
    animation: ctaGlowPulse 4s ease-in-out infinite;
}

.about-cta-title {
    position: relative;
    z-index: 1;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-cta-description {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.about-cta-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero-stats,
    .about-values-grid,
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 6rem 1.5rem 4rem;
        min-height: auto;
    }
    
    .about-hero-stats,
    .about-values-grid,
    .about-team-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-card,
    .vision-card {
        padding: 3rem 2rem;
    }
    
    .about-cta-card {
        padding: 4rem 2rem;
    }
    
    .about-cta-buttons {
        flex-direction: column;
    }
    
    .about-cta-buttons .btn {
        width: 100%;
    }
}

/* Consultation Page Styles */

/* Consultation Hero Section */
.consultation-hero-section {
    position: relative;
    padding: 8rem 2rem 6rem;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.consultation-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.consultation-hero-background .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.consultation-hero-background .orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(147, 51, 234, 0.2));
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.consultation-hero-background .orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(0, 217, 255, 0.2));
    bottom: -20%;
    right: -10%;
    animation-delay: 5s;
}

.consultation-hero-background .orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(236, 72, 153, 0.2));
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

.consultation-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.consultation-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.consultation-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.consultation-hero-badge .icon {
    font-size: 1.25rem;
}

.consultation-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.consultation-hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Why Schedule Section */
.why-schedule-section {
    position: relative;
    padding: 6rem 2rem;
    background: var(--bg-primary);
}

.why-schedule-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

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

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.benefit-card {
    position: relative;
    padding: 3rem 2rem;
    background: var(--bg-widget);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.benefit-card-glow {
    position: absolute;
    inset: -2px;
    background: var(--accent-gradient);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    filter: blur(20px);
}

.benefit-card:hover .benefit-card-glow {
    opacity: 0.3;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
}

.benefit-icon {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: rgba(0, 217, 255, 0.2);
    border-color: var(--accent-cyan);
    transform: scale(1.1);
}

.benefit-icon .icon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
}

.benefit-title {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefit-description {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Consultation Form Section */
.consultation-form-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
}

.consultation-form-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.consultation-form-background .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.consultation-form-background .orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(147, 51, 234, 0.2));
    top: -20%;
    left: -10%;
}

.consultation-form-background .orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(0, 217, 255, 0.2));
    bottom: -20%;
    right: -10%;
}

.consultation-form-background .orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(236, 72, 153, 0.2));
    top: 50%;
    right: 20%;
}

.consultation-form-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.consultation-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.consultation-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.consultation-form-wrapper:hover::before {
    transform: scaleX(1);
}

.consultation-form-content {
    position: relative;
    z-index: 1;
}

.consultation-form {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: vertical;
    min-height: 150px;
    outline: none;
}

.form-textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1), 0 10px 30px rgba(0, 217, 255, 0.1);
    transform: translateY(-2px);
}

.form-textarea::placeholder {
    color: var(--text-muted);
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    position: relative;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label:hover .checkbox-custom {
    border-color: var(--accent-cyan);
}

.checkbox-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Consultation Contact Section */
.consultation-contact-section {
    position: relative;
    padding: 6rem 2rem;
    background: var(--bg-primary);
}

.consultation-contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-info-card {
    position: relative;
    padding: 3rem 2rem;
    background: var(--bg-widget);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.contact-info-glow {
    position: absolute;
    inset: -2px;
    background: var(--accent-gradient);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    filter: blur(20px);
}

.contact-info-card:hover .contact-info-glow {
    opacity: 0.3;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
}

.contact-info-icon {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: rgba(0, 217, 255, 0.2);
    border-color: var(--accent-cyan);
    transform: scale(1.1);
}

.contact-info-icon .icon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
}

.contact-info-title {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-info-text {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-info-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    color: var(--accent-cyan);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-link:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: var(--accent-cyan);
    transform: translateX(5px);
}

.contact-info-link .icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.contact-info-link:hover .icon {
    transform: translateX(5px);
}

/* Responsive Design for Consultation Page */
@media (max-width: 992px) {
    .consultation-hero-section {
        padding: 6rem 1.5rem 4rem;
        min-height: auto;
    }

    .why-schedule-section,
    .consultation-form-section,
    .consultation-contact-section {
        padding: 4rem 1.5rem;
    }

    .consultation-form-wrapper {
        padding: 3rem 2rem;
    }

    .benefits-grid,
    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .consultation-hero-section {
        padding: 4rem 1rem 3rem;
    }

    .consultation-hero-title {
        font-size: 2rem;
    }

    .consultation-hero-description {
        font-size: 1rem;
    }

    .why-schedule-section,
    .consultation-form-section,
    .consultation-contact-section {
        padding: 3rem 1rem;
    }

    .consultation-form-wrapper {
        padding: 2rem 1.5rem;
    }

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

    .benefits-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* Blog Listing Page Styles */

/* Blog Hero Section */
.blog-hero-section {
    position: relative;
    padding: 8rem 2rem 6rem;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.blog-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.blog-hero-background .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.blog-hero-background .orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(147, 51, 234, 0.2));
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.blog-hero-background .orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(0, 217, 255, 0.2));
    bottom: -20%;
    right: -10%;
    animation-delay: 5s;
}

.blog-hero-background .orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(236, 72, 153, 0.2));
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

.blog-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.blog-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.blog-hero-badge .icon {
    font-size: 1.25rem;
}

.blog-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.blog-hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Categories Filter Section */
.blog-categories-section {
    position: relative;
    padding: 2rem 2rem;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 80px;
    z-index: 10;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 15, 0.8);
}

.blog-categories-container {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-categories-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.category-filter {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-filter:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.category-filter.active {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Blog Posts Section */
.blog-posts-section {
    position: relative;
    padding: 4rem 2rem 6rem;
    overflow: hidden;
}

.blog-posts-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.blog-posts-background .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.blog-posts-background .orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(147, 51, 234, 0.2));
    top: -20%;
    left: -10%;
}

.blog-posts-background .orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(0, 217, 255, 0.2));
    bottom: -20%;
    right: -10%;
}

.blog-posts-background .orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(236, 72, 153, 0.2));
    top: 50%;
    right: 20%;
}

.blog-posts-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-post-card {
    position: relative;
    min-height: 320px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-widget);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.blog-post-glow {
    position: absolute;
    inset: -2px;
    background: var(--accent-gradient);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    filter: blur(20px);
}

.blog-post-card:hover .blog-post-glow {
    opacity: 0.3;
}

.blog-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 2;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.blog-post-card:hover::before {
    transform: scaleX(1);
}

.blog-post-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-post-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    padding: 0.375rem 0.875rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
}

.blog-post-date {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.blog-post-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    flex: 1;
}

.blog-post-card:hover .blog-post-title {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-post-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-post-link:hover {
    gap: 0.75rem;
    color: var(--accent-purple);
}

.blog-post-link .icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.blog-post-link:hover .icon {
    transform: translateX(4px);
}

.blog-load-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.blog-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
}

.blog-load-more-btn .icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.blog-load-more-btn:hover .icon {
    transform: rotate(180deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Blog Page */
@media (max-width: 992px) {
    .blog-hero-section {
        padding: 6rem 1.5rem 4rem;
        min-height: auto;
    }

    .blog-categories-section {
        padding: 1.5rem 1rem;
        top: 70px;
    }

    .blog-posts-section {
        padding: 3rem 1.5rem 4rem;
    }

    .blog-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        padding: 4rem 1rem 3rem;
    }

    .blog-hero-title {
        font-size: 2rem;
    }

    .blog-hero-description {
        font-size: 1rem;
    }

    .blog-categories-section {
        padding: 1rem;
        top: 60px;
    }

    .blog-categories-wrapper {
        gap: 0.75rem;
    }

    .category-filter {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
    }

    .blog-posts-section {
        padding: 2rem 1rem 3rem;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-post-content {
        padding: 2rem;
    }

    .blog-post-title {
        font-size: 1.25rem;
    }
}

/* Blog Post Detail Page Styles */

/* Blog Post Hero Section */
.blog-post-hero {
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
    background: var(--bg-primary);
}

.blog-post-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.blog-post-hero-background .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.blog-post-hero-background .orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(147, 51, 234, 0.2));
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.blog-post-hero-background .orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(0, 217, 255, 0.2));
    bottom: -20%;
    right: -10%;
    animation-delay: 5s;
}

.blog-post-hero-background .orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(236, 72, 153, 0.2));
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

.blog-post-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.breadcrumb-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--accent-cyan);
}

.breadcrumb-current {
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.breadcrumb-icon {
    font-size: 1rem;
    color: var(--text-muted);
}

.blog-post-header {
    text-align: center;
}

.blog-post-category-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.blog-post-title-main {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-post-excerpt-main {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.blog-post-meta-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.blog-post-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar .icon {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.author-role {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.blog-post-date-info,
.blog-post-reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.blog-post-date-info .icon,
.blog-post-reading-time .icon {
    font-size: 1.125rem;
    color: var(--accent-cyan);
}

.blog-post-featured-image {
    position: relative;
    z-index: 1;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.featured-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.featured-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(147, 51, 234, 0.1));
}

.placeholder-icon {
    font-size: 5rem;
    color: var(--accent-cyan);
    opacity: 0.3;
}

/* Blog Post Content Section */
.blog-post-content-section {
    padding: 4rem 2rem;
    background: var(--bg-primary);
}

.blog-post-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post-main {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.blog-post-article {
    position: relative;
}

.blog-post-share {
    position: sticky;
    top: 100px;
    float: left;
    margin-right: 3rem;
    margin-left: -120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.share-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.share-button {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-button:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-3px);
}

.share-button .icon {
    font-size: 1.25rem;
}

.article-content {
    position: relative;
    z-index: 1;
}

.article-content::after {
    content: '';
    display: table;
    clear: both;
}

.article-lead {
    font-size: 1.375rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0, 217, 255, 0.05);
    border-left: 4px solid var(--accent-cyan);
    border-radius: 12px;
}

.article-content h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-content h2:first-of-type {
    margin-top: 0;
}

.article-content p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.tags-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

/* Author Bio Section */
.blog-post-author-bio {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.author-bio-card {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.author-bio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-bio-avatar .icon {
    font-size: 2.5rem;
    color: var(--text-primary);
}

.author-bio-content {
    flex: 1;
}

.author-bio-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.author-bio-role {
    font-size: 0.9375rem;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 1rem;
}

.author-bio-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.author-bio-social {
    display: flex;
    gap: 1rem;
}

.author-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-social-link:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-3px);
}

.author-social-link .icon {
    font-size: 1.25rem;
}

/* Related Posts Section */
.blog-related-posts {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
}

.blog-related-posts-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.blog-related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-post-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.related-post-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.related-post-card:hover {
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-5px);
}

.related-post-card:hover .related-post-glow {
    opacity: 1;
}

.related-post-content {
    position: relative;
    z-index: 1;
}

.related-post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.related-post-category {
    padding: 0.375rem 0.875rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.related-post-date {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.related-post-title {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.related-post-card:hover .related-post-title {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.related-post-excerpt {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-post-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.related-post-link:hover {
    gap: 0.75rem;
}

.related-post-link .icon {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.related-post-link:hover .icon {
    transform: translateX(5px);
}

/* Responsive Design for Blog Post Page */
@media (max-width: 1200px) {
    .blog-post-share {
        position: static;
        float: none;
        margin: 0 0 2rem;
        flex-direction: row;
        justify-content: center;
    }

    .share-label {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
    }
}

@media (max-width: 992px) {
    .blog-post-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .blog-post-content-section {
        padding: 3rem 1.5rem;
    }

    .blog-related-posts {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-post-hero {
        padding: 4rem 1rem 2rem;
    }

    .blog-post-title-main {
        font-size: 2rem;
    }

    .blog-post-excerpt-main {
        font-size: 1.125rem;
    }

    .blog-post-meta-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .blog-post-date-info,
    .blog-post-reading-time {
        width: 100%;
    }

    .featured-image-container {
        border-radius: 16px;
    }

    .blog-post-content-section {
        padding: 2rem 1rem;
    }

    .article-lead {
        font-size: 1.125rem;
        padding: 1.5rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .article-content p {
        font-size: 1rem;
    }

    .author-bio-card {
        flex-direction: column;
        padding: 2rem;
    }

    .blog-related-posts {
        padding: 3rem 1rem;
    }

    .blog-related-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Case Studies Listing Page Styles */

/* Case Studies Hero Section */
.case-studies-hero-section {
    position: relative;
    padding: 8rem 2rem 6rem;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.case-studies-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.case-studies-hero-background .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.case-studies-hero-background .orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(147, 51, 234, 0.2));
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.case-studies-hero-background .orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(0, 217, 255, 0.2));
    bottom: -20%;
    right: -10%;
    animation-delay: 5s;
}

.case-studies-hero-background .orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(236, 72, 153, 0.2));
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

.case-studies-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.case-studies-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.case-studies-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.case-studies-hero-badge .icon {
    font-size: 1.25rem;
}

.case-studies-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.case-studies-hero-title .gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-studies-hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Case Studies Categories Filter */
.case-studies-categories-section {
    position: sticky;
    top: 80px;
    z-index: 100;
    padding: 1.5rem 2rem;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.case-studies-categories-container {
    max-width: 1200px;
    margin: 0 auto;
}

.case-studies-categories-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.case-study-filter {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.case-study-filter:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
    color: var(--accent-cyan);
}

.case-study-filter.active {
    background: rgba(0, 217, 255, 0.15);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Case Studies Grid Section */
.case-studies-section {
    position: relative;
    padding: 4rem 2rem 5rem;
    background: var(--bg-primary);
}

.case-studies-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.case-studies-background .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.case-studies-background .orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(147, 51, 234, 0.15));
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.case-studies-background .orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(0, 217, 255, 0.15));
    bottom: 10%;
    right: -5%;
    animation-delay: 5s;
}

.case-studies-background .orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.15));
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

.case-studies-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.case-study-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateY(0);
}

.case-study-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-study-card:hover {
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-8px);
}

.case-study-card:hover .case-study-glow {
    opacity: 1;
}

.case-study-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(147, 51, 234, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.case-study-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-image-placeholder .placeholder-icon {
    font-size: 4rem;
    color: var(--accent-cyan);
    opacity: 0.3;
}

.case-study-cover-img,
.case-study-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-study-featured-img {
    border-radius: 16px;
}

a.industry-card {
    text-decoration: none;
    color: inherit;
}

.case-study-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.case-study-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.case-study-category {
    padding: 0.375rem 0.875rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-study-date {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.case-study-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.case-study-card:hover .case-study-title {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-study-excerpt {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-study-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.case-study-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.case-study-link:hover {
    gap: 0.75rem;
}

.case-study-link .icon {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.case-study-link:hover .icon {
    transform: translateX(5px);
}

.case-studies-load-more {
    text-align: center;
    margin-top: 3rem;
}

/* Case Study Detail Page Styles */

/* Case Study Hero */
.case-study-hero {
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
    background: var(--bg-primary);
}

.case-study-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.case-study-hero-background .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.case-study-hero-background .orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(147, 51, 234, 0.2));
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.case-study-hero-background .orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(0, 217, 255, 0.2));
    bottom: -20%;
    right: -10%;
    animation-delay: 5s;
}

.case-study-hero-background .orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(236, 72, 153, 0.2));
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

.case-study-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.case-study-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.case-study-header {
    text-align: center;
}

.case-study-category-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.case-study-title-main {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-study-excerpt-main {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.case-study-meta-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.case-study-meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.case-study-meta-item .icon {
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

.meta-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

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

.meta-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.case-study-featured-image {
    position: relative;
    z-index: 1;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Key Results Section */
.case-study-results-section {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
}

.case-study-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.result-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.result-card:hover {
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-5px);
}

.result-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 16px;
}

.result-icon .icon {
    font-size: 2rem;
    color: var(--text-primary);
}

.result-value {
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Case Study Content Section */
.case-study-content-section {
    padding: 4rem 2rem;
    background: var(--bg-primary);
}

.case-study-layout {
    max-width: 900px;
    margin: 0 auto;
}

.case-study-main {
    position: relative;
}

.case-study-article {
    position: relative;
}

.case-study-section {
    margin-bottom: 4rem;
}

.case-study-section:last-child {
    margin-bottom: 0;
}

.case-study-section-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-study-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.case-study-section p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.case-study-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.case-study-list li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--accent-cyan);
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.case-study-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Technology Stack */
.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tech-stack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.tech-stack-item:hover {
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-3px);
}

.tech-icon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
}

.tech-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.results-detail {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border-left: 4px solid var(--accent-cyan);
    border-radius: 12px;
}

.results-detail h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

/* Related Case Studies */
.case-study-related {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
}

.case-study-related-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.case-study-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-case-study-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.related-case-study-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.related-case-study-card:hover {
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-5px);
}

.related-case-study-card:hover .related-case-study-glow {
    opacity: 1;
}

.related-case-study-content {
    position: relative;
    z-index: 1;
}

.related-case-study-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.related-case-study-category {
    padding: 0.375rem 0.875rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.related-case-study-date {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.related-case-study-title {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.related-case-study-card:hover .related-case-study-title {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.related-case-study-excerpt {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.related-case-study-link:hover {
    gap: 0.75rem;
}

.related-case-study-link .icon {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.related-case-study-link:hover .icon {
    transform: translateX(5px);
}

/* Responsive Design for Case Studies */
@media (max-width: 992px) {
    .case-studies-hero-section {
        padding: 6rem 1.5rem 4rem;
        min-height: auto;
    }

    .case-studies-categories-section {
        padding: 1rem 1.5rem;
        top: 70px;
    }

    .case-studies-section {
        padding: 3rem 1.5rem 4rem;
    }

    .case-studies-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .case-study-results-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .case-studies-hero-section {
        padding: 4rem 1rem 3rem;
    }

    .case-studies-hero-title {
        font-size: 2rem;
    }

    .case-studies-hero-description {
        font-size: 1rem;
    }

    .case-studies-categories-section {
        padding: 1rem;
        top: 60px;
    }

    .case-studies-categories-wrapper {
        gap: 0.75rem;
    }

    .case-study-filter {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
    }

    .case-studies-section {
        padding: 2rem 1rem 3rem;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .case-study-content {
        padding: 1.5rem;
    }

    .case-study-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .case-study-hero {
        padding: 4rem 1rem 2rem;
    }

    .case-study-title-main {
        font-size: 2rem;
    }

    .case-study-excerpt-main {
        font-size: 1.125rem;
    }

    .case-study-meta-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .case-study-results-section {
        padding: 3rem 1rem;
    }

    .case-study-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .result-card {
        padding: 2rem 1.5rem;
    }

    .result-value {
        font-size: 2.5rem;
    }

    .case-study-content-section {
        padding: 2rem 1rem;
    }

    .case-study-section-title {
        font-size: 1.5rem;
    }

    .case-study-section p {
        font-size: 1rem;
    }

    .tech-stack-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .case-study-related {
        padding: 3rem 1rem;
    }

    .case-study-related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

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

    .tech-stack-grid {
        grid-template-columns: 1fr;
    }
}
/* Form submission status message (contact & consultation forms) */
.form-status {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    display: none;
}
.form-status.success,
.form-status.error {
    display: block;
}
.form-status.success {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #6ee7b7;
}
.form-status.error {
    background: rgba(244, 63, 94, 0.12);
    border: 1px solid rgba(244, 63, 94, 0.4);
    color: #fda4af;
}

/* ---- Production hardening (Symtax Global) ---- */

/* Service page heroes: proper horizontal margins (was flush to edge) */
.hero-section {
    position: relative;
    padding-left: clamp(1.5rem, 4vw, 3rem);
    padding-right: clamp(1.5rem, 4vw, 3rem);
    overflow: hidden;
}

.hero-section .hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 4rem;
}

/* Logo: transparent PNG, sized for wide wordmark */
.logo-image,
.footer-logo-image {
    filter: none;
    object-fit: contain;
    background: transparent;
}

/* Buttons as links: must look identical to buttons */
a.btn {
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}

a.btn-primary {
    color: var(--bg-primary);
}

a.nav-cta,
a.mobile-nav-cta {
    text-decoration: none;
    color: inherit;
    border: none;
    background: var(--accent-gradient);
    font-family: inherit;
}

/* Social: brand logo images (not missing icon font glyphs) */
.social-icon-img {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
    position: relative;
    z-index: 1;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-link:hover .social-icon-img {
    opacity: 1;
    transform: scale(1.1);
}

/* Tech stack: ensure logos always visible on dark cards */
.tech-logo .logo-img {
    min-width: 48px;
    min-height: 48px;
}

.tech-logo .logo-img[src*="ffffff"] {
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.3));
}

