@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
    --primary: #0A0A0A;
    --accent: #0066CC;
    --accent-bright: #0088FF;
    --accent-purple: #9D4EDD;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary);
    color: white;
    overflow-x: hidden;
    overflow-y: auto;
    cursor: none;
    width: 100%;
    max-width: 100vw;
}

/* Custom Cursor */
#cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s, opacity 0.3s;
    mix-blend-mode: difference;
}

#cursor-trail {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 102, 204, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s;
}

.nav-logo {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
    line-height: 0;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-logo:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .nav-logo-img {
        height: 32px;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-links a:hover {
    color: white;
}

.nav-cta {
    background: var(--accent);
    color: white !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
}

/* Hero - Full Width Impact */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 60px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 136, 255, 0.28), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(157, 78, 221, 0.22), transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(0, 102, 204, 0.1), transparent 70%);    
        z-index: 0;
}

.hero-content {
    max-width: 1200px;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.5;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.6);
}

/* Three Pillars - Foundation */
.pillars-section {
    padding: 80px 80px;
    background: #050505;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
}

.section-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.section-desc {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.pillar-card {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08), transparent);
    border: 2px solid rgba(0, 102, 204, 0.2);
    border-radius: 24px;
    padding: 60px;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.pillar-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent);
    box-shadow: 0 30px 80px rgba(0, 102, 204, 0.3);
}

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

.pillar-content {
    position: relative;
    z-index: 1;
}

.pillar-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 40px;
}

.pillar-icon svg {
    width: 100%;
    height: 100%;
}

.pillar-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.pillar-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Three Paths Section */
.paths-section {
    padding: 80px 80px;
    background: var(--primary);
    position: relative;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1400px;
    margin: 100px auto 0;
    background: rgba(0, 102, 204, 0.2);
}

.path-card {
    background: #0A0A0A;
    padding: 80px 60px;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.path-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.5s;
}

.path-card:hover {
    background: rgba(0, 102, 204, 0.05);
    transform: translateY(-10px);
}

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

.path-number {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 30px;
}

.path-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.path-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 40px;
}

.path-features {
    list-style: none;
    margin-bottom: 40px;
}

.path-features li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.path-features li:last-child {
    border-bottom: none;
}

.path-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: gap 0.3s;
}

.path-link:hover {
    gap: 12px;
}

/* Methodology Deep Dive - Split Products */
.methodology-section {
  padding: 80px 80px;
  background: #050505;
}

.method-split {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1400px;
  margin: 100px auto 0;
}

.method-product {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), transparent);
  border: 2px solid rgba(0, 102, 204, 0.2);
  border-radius: 24px;
  padding: 60px;
  transition: all 0.5s;
}

.method-product:hover {
  border-color: var(--accent);
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 102, 204, 0.3);
}

.method-logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 30px;
}

.method-logo-image {
  max-width: 200px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.method-product h3 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 24px;
  font-family: 'Space Grotesk', sans-serif;
}

.method-product p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 30px;
}

.method-components {
  list-style: none;
  margin-top: 40px;
}

.method-components li {
  padding: 20px;
  background: rgba(0, 102, 204, 0.05);
  border-left: 3px solid var(--accent);
  margin-bottom: 16px;
  border-radius: 8px;
}

.method-components li strong {
  display: block;
  margin-bottom: 8px;
  color: white;
}

/* Services Grid */
.services-section {
    padding: 80px 80px;
    background: var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 100px auto 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateX(10px);
    background: rgba(0, 102, 204, 0.05);
}

.service-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(0, 102, 204, 0.15);
    border-radius: 20px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.service-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* Case Studies - Full Bleed */
.cases-section {
    padding: 0;
    background: #050505;
}

/* Hide mobile-only navigation on desktop */
.carousel-dots,
.service-indicators,
.swipe-hint,
.carousel-indicators {
    display: none;
}

.case-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 60vh;
    align-items: center;
}

.case-item:nth-child(even) {
    background: #0A0A0A;
}

.case-item:nth-child(even) .case-content {
    order: 2;
}

.case-content {
    padding: 60px 80px;
}

.case-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 30px;
}

.case-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Space Grotesk', sans-serif;
}

.case-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 40px;
}

.case-visual {
    height: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.case-visual-graphic {
    position: relative;
    z-index: 2;
    width: 400px;
    height: 400px;
}

.case-visual-graphic svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3));
}

/* Partnerships & Accreditations */
.partnerships-section {
    padding: 80px 80px;
    background: #151515;
    text-align: center;
}

.partnerships-section .section-header {
    margin-bottom: 60px;
}

.partnerships-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.partnership-logo {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: grayscale(100%);
}

.partnership-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: grayscale(0%);
}

.partnership-logo img {
    max-height: 100%;
    max-width: 240px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.skeleton-logo {
    width: 200px;
    height: 90px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 8px;
}

/* CTA */
.cta-section {
    padding: 80px 80px;
    text-align: center;
    background: var(--primary);
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 102, 204, 0.15), transparent 40%),
        radial-gradient(circle at 70% 50%, rgba(157, 78, 221, 0.12), transparent 40%);
    animation: pulse-slow 6s infinite;
}

@keyframes pulse-slow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 7vw, 84px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -3px;
}

.cta-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 60px;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    /* Navigation becomes simpler on tablet */
    nav {
        padding: 20px 30px;
    }
    
    .nav-links {
        gap: 30px;
    }
    
    .nav-links a {
        font-size: 13px;
    }
    
    /* Grids stack to single column */
    .pillars-grid,
    .paths-grid,
    .method-split,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Case studies stack */
    .case-item {
        grid-template-columns: 1fr;
    }
    
    .case-item:nth-child(even) .case-content {
        order: 1;
    }
    
    .case-visual {
        min-height: 400px;
    }
    
    /* Reduce padding on sections */
    .pillars-section,
    .paths-section,
    .methodology-section,
    .services-section {
        padding: 40px 40px;
    }
    
    .hero,
    .cta-section {
        padding: 100px 40px;
    }
    
    .case-content {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal scroll on body */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
        width: 100%;
        position: relative;
    }

    /* Constrain all sections except services section which needs horizontal scroll */
    section:not(.services-section) {
        max-width: 100vw;
        overflow-x: hidden;
        position: relative;
    }

    /* Allow these specific elements to be wider for swipe */
    .cases-container {
        max-width: 300vw;
    }

    .services-grid {
        max-width: none;
    }
    
    /* Hide custom cursor on touch devices */
    #cursor,
    #cursor-trail {
        display: none;
    }

    body {
        cursor: auto;
    }

    /* Ensure interactive elements have pointer cursor */
    button, a, .nav-toggle {
        cursor: pointer !important;
    }
    
    /* Simplified mobile navigation */
    nav {
        padding: 15px 20px;
        flex-wrap: wrap;
        position: relative;
    }

    .logo img {
        height: 32px;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
        background: rgba(10, 10, 10, 0.95);
        border-top: 1px solid rgba(0, 102, 204, 0.2);
        margin-top: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 10px 0;
        cursor: pointer;
    }

    /* Mobile menu toggle */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        cursor: pointer;
        z-index: 1001;
        padding: 5px;
        margin: -5px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: white;
        transition: all 0.3s;
        border-radius: 2px;
    }
    
    /* Swipeable Case Studies */
    .cases-section {
        position: relative;
        overflow: hidden;
        max-width: 100vw;
    }
    
    .cases-container {
        display: flex;
        transition: transform 0.3s ease-out;
        width: 300%; /* 3 slides x 100% each */
        will-change: transform;
    }
    
    .case-item {
        min-width: 100vw;
        max-width: 100vw;
        width: 100vw;
        flex-shrink: 0;
        display: block;
        overflow: hidden;
        grid-template-columns: none;
    }
    
    .case-content,
    .case-visual {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .case-visual-graphic {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .case-visual svg {
        max-width: 100%;
        height: auto;
    }
    
    /* Carousel Navigation Dots */
    .cases-section .carousel-dots {
        display: flex !important;
        justify-content: center;
        gap: 12px;
        padding: 30px 0;
        position: relative;
        z-index: 10;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        border: 1px solid rgba(0, 102, 204, 0.5);
        cursor: pointer;
        transition: all 0.3s;
    }

    .carousel-dot.active {
        background: #0066CC;
        transform: scale(1.3);
    }
    
    /* Service Navigation Indicators */
    .service-indicators {
        display: none !important;
    }

    .service-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        border: 1px solid rgba(0, 102, 204, 0.3);
    }

    .service-indicator.active {
        background: #0066CC;
        transform: scale(1.2);
    }

    /* Carousel indicators (for services) */
    .services-section .carousel-indicators {
        display: flex !important;
        justify-content: center;
        gap: 8px;
        padding: 20px 0;
    }

    /* Swipe hints */
    .services-section .swipe-hint {
        display: flex !important;
    }
    
    /* Swipe hint */
    .swipe-hint {
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
        padding: 10px 0 20px;
        display: none;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .swipe-hint::before,
    .swipe-hint::after {
        content: '←';
        font-size: 20px;
    }

    .swipe-hint::after {
        content: '→';
    }

    /* Show swipe hint for case studies */
    .cases-section .swipe-hint {
        display: flex !important;
    }
    
    /* Hero adjustments */
    .hero {
        padding: 80px 20px 60px;
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: clamp(36px, 10vw, 56px);
        margin-bottom: 24px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    /* Section adjustments */
    .section-title {
        font-size: clamp(32px, 8vw, 48px);
    }
    
    .section-desc {
        font-size: 16px;
    }
    
    .pillars-section,
    .paths-section,
    .methodology-section {
        padding: 80px 20px;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    /* Card adjustments */
    .pillar-card,
    .path-card,
    .method-product {
        padding: 40px 30px;
    }
    
    .pillar-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 30px;
    }
    
    .pillar-title,
    .path-title {
        font-size: 28px;
    }
    
    .method-product h3 {
        font-size: 28px;
    }

    .method-logo-image {
        max-width: 150px;
        max-height: 60px;
    }

    /* SWIPEABLE SERVICES SECTION */
    .services-section {
        padding: 80px 0;
        overflow-x: auto;
        max-width: 100vw;
    }

    .services-section .section-header {
        padding: 0 20px;
    }

    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
        padding: 0;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        min-width: calc(100vw - 60px);
        max-width: calc(100vw - 60px);
        scroll-snap-align: center;
        padding: 40px 30px;
        margin: 0 10px;
        flex-shrink: 0;
        box-sizing: border-box;
    }

    .service-card:first-child {
        margin-left: 20px;
    }

    .service-card:last-child {
        margin-right: 20px;
    }
    
    /* SWIPEABLE CASE STUDIES */
    .case-studies {
        overflow: hidden;
        position: relative;
    }
    
    .case-item {
        display: none;
    }
    
    .case-item.active {
        display: grid;
        grid-template-columns: 1fr;
    }
    
    .case-content {
        padding: 40px 20px;
    }
    
    .case-title {
        font-size: 32px;
    }
    
    .case-desc {
        font-size: 16px;
    }
    
    .case-visual {
        min-height: 300px;
    }
    
    .case-visual-graphic {
        width: 250px;
        height: 250px;
    }
    
    /* Carousel indicators for services */
    .services-section .carousel-indicators {
        display: flex !important;
        justify-content: center;
        gap: 8px;
        padding: 20px 0;
        position: relative;
        z-index: 10;
    }

    .services-section .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(0, 102, 204, 0.3);
        border: none;
        cursor: pointer;
        transition: all 0.3s;
        padding: 0;
    }

    .services-section .carousel-dot.active {
        width: 24px;
        border-radius: 4px;
        background: #0066CC;
    }
    
    /* Partnerships */
    .partnerships-section {
        padding: 60px 20px;
    }

    .partnerships-section .section-header {
        margin-bottom: 40px;
    }

    .partnerships-logos {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }

    .partnership-logo {
        height: 70px;
    }

    .partnership-logo img {
        max-width: 200px;
    }

    .skeleton-logo {
        width: 160px;
        height: 70px;
    }

    /* CTA */
    .cta-section {
        padding: 60px 20px;
        max-width: 100vw;
        width: 100%;
        overflow-x: hidden;
        position: relative;
    }

    .cta-content {
        max-width: 100%;
        padding: 0 10px;
    }

    .cta-content h2 {
        font-size: clamp(36px, 9vw, 56px);
        margin-bottom: 24px;
        word-wrap: break-word;
    }

    .cta-content p {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    /* Buttons */
    .btn-primary {
        padding: 16px 32px;
        font-size: 15px;
    }
    
    /* Reduce particle count on mobile for performance */
    #particles {
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    /* Extra small phones */
    .hero h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .pillar-card,
    .path-card,
    .method-product,
    .service-card {
        padding: 30px 20px;
    }
    
    .case-title {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }

    .method-logo-image {
        max-width: 120px;
        max-height: 50px;
    }

    /* Hide particles completely on very small screens */
    #particles {
        display: none;
    }
}
/* Footer */
footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--accent-bright), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.footer-column h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-column ul li a:hover {
    color: var(--accent-bright);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-bright);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        padding: 0 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
}

/* Product Cards (for Sanity CMS) */

/* ========================================
   Scroll to Top Button Styles
   ======================================== */

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 102, 104, 0.4), rgba(0, 217, 255) 100%);
  border: none;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
  background: linear-gradient(135deg, #0088FF 0%, #00D9FF 100%);
}

.scroll-to-top:active {
  transform: translateY(-1px);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
  }
}

/* About Page Styles */

/* About Page Sections */
.about-section {
    padding: 80px 20px;
    background: var(--primary);
}

.about-section:nth-child(even) {
    background: #050505;
}

/* Vision & Mission Cards */
.vision-mission-section {
    padding: 80px 20px;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.vm-card {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08), transparent);
    border: 2px solid rgba(0, 102, 204, 0.2);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    transition: all 0.5s;
}

.vm-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 30px 80px rgba(0, 102, 204, 0.3);
}

.vm-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.vm-icon svg {
    width: 100%;
    height: 100%;
}

.vm-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
}

.vm-card p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Philosophy Section */
.philosophy-section {
    background: rgba(0, 102, 204, 0.05);
    border: 1px solid rgba(0, 102, 204, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
}

.philosophy-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-bright);
}

.philosophy-section p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Values Section */
.values-section {
    padding: 80px 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s;
}

.value-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    background: rgba(0, 102, 204, 0.05);
}

.value-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Founders Section */
.founders-section {
    padding: 80px 20px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.founder-card {
    display: flex;
    gap: 30px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), transparent);
    border: 2px solid rgba(0, 102, 204, 0.2);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.5s;
}

.founder-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 30px 80px rgba(0, 102, 204, 0.3);
}

.founder-image {
    flex-shrink: 0;
}

.founder-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
}

.founder-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.founder-content {
    flex: 1;
}

.founder-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.founder-role {
    font-size: 16px;
    color: var(--accent-bright);
    font-weight: 600;
    margin-bottom: 15px;
}

.founder-bio {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.founder-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.founder-linkedin:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }

    .vm-card {
        padding: 35px 25px;
    }

    .vm-icon {
        width: 80px;
        height: 80px;
    }

    .vm-card h2 {
        font-size: 24px;
    }

    .vm-card p {
        font-size: 16px;
    }

    .philosophy-section {
        padding: 30px 25px;
    }

    .philosophy-section h3 {
        font-size: 20px;
    }

    .philosophy-section p {
        font-size: 15px;
    }

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

    .value-card {
        padding: 30px 25px;
    }

    .value-card h3 {
        font-size: 20px;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .founder-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 25px;
    }

    .founder-photo,
    .founder-photo-placeholder {
        width: 100px;
        height: 100px;
    }

    .founder-photo-placeholder {
        font-size: 40px;
    }

    .founder-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .vm-card h2 {
        font-size: 22px;
    }

    .founder-photo,
    .founder-photo-placeholder {
        width: 80px;
        height: 80px;
    }

    .founder-photo-placeholder {
        font-size: 32px;
    }

    .founder-content h3 {
        font-size: 22px;
    }
}

/* Contact Page Styles */

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: var(--primary);
}

/* Form and Map Grid */
.contact-form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Contact Form */
.contact-form-container {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), transparent);
    border: 2px solid rgba(0, 102, 204, 0.2);
    border-radius: 24px;
    padding: 50px;
}

.contact-form-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0, 102, 204, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

/* Form Validation States */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.error-message {
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
    display: none;
    animation: slideDown 0.2s ease-out;
}

.form-group.error .error-message {
    display: block;
}

.form-help {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-top: 4px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Map Wrapper */
.map-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 600px;
    border: 2px solid rgba(0, 102, 204, 0.2);
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

/* Map Info Overlay */
.map-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7) 60%, transparent);
    padding: 40px 30px 30px;
    z-index: 1000;
}

.map-info-overlay h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.map-info-overlay p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.company-info-text {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.company-info-small {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Contact Info Cards Row */
.contact-info-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
    text-align: center;
}

.contact-info-card:hover {
    border-color: var(--accent);
    background: rgba(0, 102, 204, 0.05);
    transform: translateY(-5px);
}

.contact-info-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.contact-info-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.contact-info-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.contact-info-card a {
    color: var(--accent-bright);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: white;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: var(--primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--accent);
    background: rgba(0, 102, 204, 0.05);
    transform: translateY(-5px);
}

.faq-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-form-map-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-wrapper {
        min-height: 500px;
    }

    .map-container {
        min-height: 500px;
    }

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

    .contact-info-cards-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }

    .contact-form-container {
        padding: 35px 25px;
    }

    .contact-form-container h2 {
        font-size: 24px;
    }

    .map-wrapper {
        min-height: 400px;
    }

    .map-container {
        min-height: 400px;
    }

    .map-info-overlay {
        padding: 30px 20px 20px;
    }

    .map-info-overlay h3 {
        font-size: 20px;
    }

    .map-info-overlay p {
        font-size: 14px;
    }

    .contact-info-cards-row {
        gap: 20px;
    }

    .contact-info-card {
        padding: 25px 20px;
    }

    .contact-info-icon {
        font-size: 32px;
    }

    .contact-info-card h3 {
        font-size: 18px;
    }

    .faq-section {
        padding: 60px 20px;
    }

    .faq-item {
        padding: 25px 20px;
    }

    .faq-item h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .contact-form-container h2 {
        font-size: 22px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 15px;
    }

    .map-wrapper {
        min-height: 350px;
    }

    .map-container {
        min-height: 350px;
    }

    .map-info-overlay {
        padding: 25px 15px 15px;
    }

    .map-info-overlay h3 {
        font-size: 18px;
    }

    .contact-info-icon {
        font-size: 28px;
    }
}

/* Legal Pages Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0066CC 0%, #9D4EDD 100%);
    padding: 100px 20px 60px;
    text-align: center;
    color: white;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Page Content */
.page-content {
    padding: 60px 20px 80px;
    background: var(--primary);
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Effective Date Notice */
.effective-date-notice {
    background: rgba(0, 102, 204, 0.1);
    border-left: 4px solid var(--accent);
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.effective-date-notice p {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.8);
}

.effective-date-notice strong {
    color: var(--accent-bright);
}

/* Company Info Section */
.company-info-section {
    background: rgba(0, 102, 204, 0.05);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 102, 204, 0.2);
}

.company-info-section h2 {
    color: var(--accent-bright);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.company-info-section p {
    margin: 8px 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.company-info-section a {
    color: var(--accent-bright);
    text-decoration: none;
}

.company-info-section a:hover {
    text-decoration: underline;
}

/* Content Sections */
.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.content-section h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section h4 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-top: 25px;
    margin-bottom: 12px;
}

.section-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.section-content ul,
.section-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.section-content li {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 12px;
}

.section-content strong {
    color: white;
    font-weight: 600;
}

.section-content em {
    color: rgba(255, 255, 255, 0.6);
}

.section-content code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
    color: var(--accent-bright);
}

.section-content blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
}

.section-content a {
    color: var(--accent-bright);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.section-content a:hover {
    border-bottom-color: var(--accent-bright);
}

/* Page Meta */
.page-meta {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.last-updated {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* Table Styles (if needed) */
.section-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.section-content th,
.section-content td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.section-content th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 20px 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .legal-content {
        padding: 25px 20px;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section h3 {
        font-size: 1.25rem;
    }
    
    .content-section h4 {
        font-size: 1.1rem;
    }
    
    .section-content p,
    .section-content li {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }

    .page-header {
        background: white !important;
        color: black !important;
        border-bottom: 2px solid #0066CC;
    }

    .page-content {
        background: white !important;
    }

    .legal-content,
    .content-section h2,
    .content-section h3,
    .content-section h4,
    .section-content p,
    .section-content li,
    .section-content strong,
    .section-content em {
        background: white !important;
        color: black !important;
        border-color: #ccc !important;
    }

    nav,
    footer,
    .scroll-to-top,
    #particles,
    #cursor,
    #cursor-trail {
        display: none !important;
    }

    .section-content a {
        color: #0066CC;
        text-decoration: underline;
    }
}

/* Accessibility */
.legal-content:focus-within {
    outline: 2px solid #0066CC;
    outline-offset: 4px;
}

/* Loading State */
.legal-content.loading {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-content.loading::after {
    content: 'Loading...';
    color: #999;
    font-size: 1.25rem;
}

        /* Hero Orbiting Circles */
        .hero-circles {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            pointer-events: none;
        }
        
        .orbit-circle {
            position: absolute;
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }
        
        .orbit-circle::before {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            background: rgba(0, 136, 255, 0.8);
            border-radius: 50%;
            top: -6px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 20px rgba(0, 136, 255, 0.6);
        }
        
        .orbit-circle::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(147, 51, 234, 0.8);
            border-radius: 50%;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 15px rgba(147, 51, 234, 0.6);
        }
        
        .orbit-circle:nth-child(1) {
            width: 200px;
            height: 200px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-duration: 15s;
            border: 1px solid rgba(0, 136, 255, 0.2);
        }
        
        .orbit-circle:nth-child(2) {
            width: 350px;
            height: 350px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-duration: 20s;
            animation-direction: reverse;
            border: 1px solid rgba(0, 136, 255, 0.15);
        }
        
        .orbit-circle:nth-child(3) {
            width: 500px;
            height: 500px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-duration: 25s;
            border: 1px solid rgba(0, 136, 255, 0.1);
        }
        
        @keyframes rotate {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

/* ============================================================================
   SKELETON LOADERS
   ============================================================================ */

.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Skeleton Cards */
.skeleton-card {
    padding: 40px 30px;
    margin: 10px;
    min-height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skeleton-title {
    width: 60%;
    height: 28px;
    margin-bottom: 16px;
}

.skeleton-text {
    width: 100%;
    height: 16px;
    margin-bottom: 12px;
}

.skeleton-text.short {
    width: 70%;
}

.skeleton-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

/* Hide skeletons when content is loaded */
.content-loaded .skeleton-card {
    display: none;
}

/* ============================================================================
   ERROR NOTIFICATIONS
   ============================================================================ */

.error-notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: rgba(220, 38, 38, 0.95);
    color: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    max-width: 400px;
    animation: slideInRight 0.3s ease-out;
    border-left: 4px solid #ef4444;
}

.error-notification.info {
    background: rgba(59, 130, 246, 0.95);
    border-left-color: #3b82f6;
}

.error-notification.warning {
    background: rgba(245, 158, 11, 0.95);
    border-left-color: #f59e0b;
}

.error-notification-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
}

.error-notification-message {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.4;
}

.error-notification-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 4px 8px;
}

.error-notification-close:hover {
    opacity: 1;
}

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

/* Content Load Error - Inline display */
.content-load-error {
    padding: 40px 20px;
    text-align: center;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    margin: 20px;
}

.content-load-error h3 {
    color: #ef4444;
    margin-bottom: 12px;
    font-size: 18px;
}

.content-load-error p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 16px;
}

.content-load-error button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.content-load-error button:hover {
    background: var(--accent-bright);
}

@media (max-width: 768px) {
    .error-notification {
        top: 60px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
/* ============================================================================
   ARTICLES SECTION STYLES
   ============================================================================ */

/* Page Hero for Articles */
.page-hero {
    padding: 120px 20px 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 136, 255, 0.05) 100%);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Article Filters */
.articles-filters {
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.articles-filters .container {
    max-width: 1200px;
    margin: 0 auto;
}

.filter-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

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

/* Articles Section */
.articles-section {
    padding: 60px 20px;
    min-height: 60vh;
}

.articles-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.article-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.2);
    border-color: rgba(0, 102, 204, 0.3);
}

.article-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
}

.article-tags {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.article-tag {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent-bright);
}

.article-content {
    padding: 24px;
}

.article-date {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.article-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: white;
    line-height: 1.4;
}

.article-excerpt {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
}

.author-name {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* No Articles Message */
.no-articles {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================================================
   INDIVIDUAL ARTICLE PAGE STYLES
   ============================================================================ */

.article-page {
    padding-top: 80px;
}

/* Article Header */
.article-header {
    padding: 40px 20px;
    text-align: center;
}

.article-header .container {
    max-width: 900px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-bright);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--accent);
}

.article-categories {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.category-badge {
    background: rgba(0, 102, 204, 0.2);
    border: 1px solid rgba(0, 102, 204, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-bright);
}

.article-page-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 20px 0;
    color: white;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.article-meta .article-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-meta .author-avatar {
    width: 40px;
    height: 40px;
}

.article-meta .author-avatar-placeholder {
    width: 40px;
    height: 40px;
}

.article-meta .article-date {
    color: rgba(255, 255, 255, 0.5);
}

/* Featured Image */
.article-featured-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: center;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Article Body */
.article-body {
    padding: 0 20px 60px;
}

.article-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
}

/* Article Content */
.article-content {
    max-width: 720px;
}

.article-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 40px 0 20px 0;
    color: white;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: white;
}

.article-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 25px 0 12px 0;
    color: white;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.article-content blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 24px;
    margin: 30px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.article-content a {
    color: var(--accent-bright);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.article-content a:hover {
    border-bottom-color: var(--accent-bright);
}

.article-content code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.9em;
}

.article-content strong {
    font-weight: 600;
    color: white;
}

.article-image-block {
    margin: 40px 0;
}

.article-image-block img {
    width: 100%;
    border-radius: 8px;
}

.article-image-block figcaption {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
    font-style: italic;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.author-card,
.share-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

/* Author Card */
.author-card-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.author-card-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-card-image-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    flex-shrink: 0;
}

.author-card-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: white;
}

.author-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-bright);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.author-linkedin:hover {
    color: var(--accent);
}

.author-card-bio {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Share Card */
.share-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: white;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.share-btn.linkedin:hover {
    background: rgba(0, 119, 181, 0.2);
    border-color: #0077B5;
    color: #0077B5;
}

.share-btn.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: #1DA1F2;
    color: #1DA1F2;
}

/* Related Articles */
.related-articles {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-articles .container {
    max-width: 1200px;
    margin: 0 auto;
}

.related-articles h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    color: white;
}

/* Article Error */
.article-error {
    text-align: center;
    padding: 100px 20px;
}

.article-error h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.article-error p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .article-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .article-page-title {
        font-size: 2rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .article-content h3 {
        font-size: 1.25rem;
    }

    .article-content p {
        font-size: 1rem;
    }

    .filter-buttons {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .article-meta {
        flex-direction: column;
        gap: 12px;
    }

    .share-buttons {
        flex-direction: column;
    }
}
