/* ============================================
   AFFILCONTACTS.COM - UNIQUE DESIGN SYSTEM
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --nexus-primary: #5689FE;
    --nexus-primary-dark: #3D6FE0;
    --nexus-secondary: #7C3AED;
    --nexus-accent: #10B981;
    --nexus-dark: #0F172A;
    --nexus-dark-light: #1E293B;
    --nexus-gray: #64748B;
    --nexus-gray-light: #94A3B8;
    --nexus-white: #FFFFFF;
    --nexus-bg: #0A0E1A;
    --nexus-bg-light: #141B2E;
    --nexus-gradient: linear-gradient(135deg, #5689FE 0%, #7C3AED 100%);
    --nexus-gradient-alt: linear-gradient(135deg, #10B981 0%, #5689FE 100%);
    --nexus-shadow: 0 10px 40px rgba(86, 137, 254, 0.15);
    --nexus-shadow-lg: 0 20px 60px rgba(86, 137, 254, 0.25);
    --nexus-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--nexus-white);
    background: var(--nexus-bg);
    overflow-x: hidden;
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nexus-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    contain: layout;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

img[loading="lazy"] {
    content-visibility: auto;
}

/* Animated Background Canvas */
.nexus-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
    will-change: transform;
    contain: strict;
    transform: translateZ(0);
}

/* Reduce animation on mobile for performance */
@media (max-width: 768px) {
    .nexus-canvas {
        opacity: 0.5;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .nexus-canvas {
        display: none;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Header */
.nexus-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(86, 137, 254, 0.1);
    transition: var(--nexus-transition);
    will-change: background-color, box-shadow;
    contain: layout style paint;
}

.nexus-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.nexus-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--nexus-transition);
}

.nexus-logo-img {
    height: 40px;
    width: auto;
    transition: var(--nexus-transition);
}

.nexus-logo-link:hover .nexus-logo-img {
    transform: scale(1.05);
}

/* Navigation */
.nexus-nav {
    display: flex;
    align-items: center;
}

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

.nexus-nav-link {
    color: var(--nexus-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--nexus-transition);
    padding: 8px 0;
}

.nexus-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--nexus-gradient);
    transition: var(--nexus-transition);
}

.nexus-nav-link:hover,
.nexus-nav-link.nexus-active {
    color: var(--nexus-primary);
}

.nexus-nav-link:hover::after,
.nexus-nav-link.nexus-active::after {
    width: 100%;
}

/* Burger Menu Toggle */
.nexus-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.nexus-menu-line {
    width: 25px;
    height: 2px;
    background: var(--nexus-white);
    transition: var(--nexus-transition);
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.nexus-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    z-index: 1;
    overflow: hidden;
    contain: layout style;
}

.nexus-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.nexus-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: var(--nexus-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.nexus-hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
    color: var(--nexus-primary);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.nexus-hero-description {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--nexus-gray-light);
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.nexus-hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Buttons */
.nexus-btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--nexus-transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.nexus-btn-primary {
    background: var(--nexus-gradient);
    color: var(--nexus-white);
    box-shadow: var(--nexus-shadow);
}

.nexus-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--nexus-shadow-lg);
}

.nexus-btn-secondary {
    background: transparent;
    color: var(--nexus-white);
    border: 2px solid var(--nexus-primary);
}

.nexus-btn-secondary:hover {
    background: var(--nexus-primary);
    transform: translateY(-2px);
}

/* Section Styles */
.nexus-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--nexus-white);
}

.nexus-section-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--nexus-gray-light);
    text-align: center;
    margin-bottom: 50px;
}

/* Brands Section - Unique Diagonal Layout */
.nexus-brands {
    position: relative;
    padding: 120px 0;
    z-index: 1;
    background: var(--nexus-bg);
    overflow: hidden;
}

.nexus-brands-diagonal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(86, 137, 254, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    z-index: 0;
}

.nexus-brands-header-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 80px;
}

.nexus-brands-title {
    margin-bottom: 20px;
}

.nexus-brands-subtitle {
    font-size: clamp(16px, 2vw, 20px);
}

.nexus-brands-showcase {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.nexus-brand-showcase-card {
    background: rgba(30, 41, 59, 0.7);
    border: 2px solid rgba(86, 137, 254, 0.3);
    border-radius: 24px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--nexus-transition);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    contain: layout style paint;
    will-change: transform;
}

.nexus-brand-showcase-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(86, 137, 254, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--nexus-transition);
    pointer-events: none;
    z-index: 0;
}

.nexus-brand-showcase-card:hover::before {
    opacity: 1;
}

.nexus-brand-showcase-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--nexus-primary);
    box-shadow: 0 25px 80px rgba(86, 137, 254, 0.4);
    background: rgba(30, 41, 59, 0.9);
}

.nexus-brand-logo-container {
    position: relative;
    width: 140px;
    height: 140px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nexus-brand-logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(86, 137, 254, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: var(--nexus-transition);
    animation: pulseGlow 3s ease-in-out infinite;
}

.nexus-brand-showcase-card:hover .nexus-brand-logo-glow {
    opacity: 1;
    animation: pulseGlow 1.5s ease-in-out infinite;
}

.nexus-brand-logo-main {
    position: relative;
    z-index: 2;
    max-width: 160px;
    max-height:190px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--nexus-transition);
}

/* SVG logos don't need invert filter */
.nexus-brand-logo-main[src$=".svg"] {
    filter: brightness(1) invert(0) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.nexus-brand-showcase-card:hover .nexus-brand-logo-main {
    transform: scale(1.1);
}

.nexus-brand-showcase-card:hover .nexus-brand-logo-main[src$=".svg"] {
    transform: scale(1.1);
}

.nexus-brand-details {
    width: 100%;
    position: relative;
    z-index: 1;
}

.nexus-brand-title-main {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--nexus-white);
    margin-bottom: 15px;
}

.nexus-brand-contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(86, 137, 254, 0.2);
    border: 1px solid rgba(86, 137, 254, 0.4);
    border-radius: 20px;
    padding: 8px 16px;
    margin-bottom: 15px;
}

.nexus-contact-label {
    font-size: 12px;
    color: var(--nexus-gray-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nexus-contact-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--nexus-primary);
}

.nexus-brand-role {
    font-size: 15px;
    color: var(--nexus-white);
    font-weight: 500;
    margin-bottom: 8px;
}

.nexus-brand-expertise {
    font-size: 14px;
    color: var(--nexus-gray-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.nexus-brand-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--nexus-gradient);
    color: var(--nexus-white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    z-index: 10;
    transition: var(--nexus-transition);
    box-shadow: 0 4px 15px rgba(86, 137, 254, 0.3);
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.nexus-brand-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(86, 137, 254, 0.5);
}

.nexus-brand-cta-btn svg {
    transition: var(--nexus-transition);
}

.nexus-brand-cta-btn:hover svg {
    transform: translateX(4px);
}

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

/* Power Section - Asymmetric Layout */
.nexus-power {
    position: relative;
    padding: 120px 0;
    z-index: 1;
    background: var(--nexus-bg-light);
    overflow: hidden;
}

.nexus-power-asymmetric-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(86, 137, 254, 0.05) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.nexus-power-asymmetric-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.nexus-power-visual-side {
    animation: fadeInLeft 1s ease-out;
}

.nexus-power-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--nexus-shadow-lg);
}

.nexus-power-image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(86, 137, 254, 0.3) 0%, transparent 70%);
    border-radius: 24px;
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

.nexus-power-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transition: var(--nexus-transition);
}

.nexus-power-image-frame:hover .nexus-power-img {
    transform: scale(1.05);
}

.nexus-power-content-side {
    animation: fadeInRight 1s ease-out;
}

.nexus-power-title {
    text-align: left;
    margin-bottom: 30px;
}

.nexus-power-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--nexus-gray-light);
    margin-bottom: 40px;
}

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

.nexus-feature-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(86, 137, 254, 0.2);
    border-radius: 16px;
    padding: 25px;
    transition: var(--nexus-transition);
    backdrop-filter: blur(10px);
}

.nexus-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--nexus-primary);
    box-shadow: var(--nexus-shadow);
}

.nexus-feature-icon-wrapper {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: var(--nexus-gradient);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.nexus-feature-icon {
    font-weight: 700;
    color: var(--nexus-white);
    font-size: 20px;
}

.nexus-feature-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--nexus-white);
    margin-bottom: 8px;
}

.nexus-feature-text {
    font-size: 14px;
    color: var(--nexus-gray-light);
    line-height: 1.6;
}

.nexus-power-highlight-box {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(86, 137, 254, 0.15) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-left: 4px solid var(--nexus-primary);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.nexus-power-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(86, 137, 254, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.nexus-power-text-final {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.9;
    color: var(--nexus-gray-light);
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

/* Testimonials Section */
.nexus-testimonials {
    position: relative;
    padding: 100px 0;
    z-index: 1;
    background: var(--nexus-bg-light);
}

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

.nexus-testimonial-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(86, 137, 254, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: var(--nexus-transition);
    backdrop-filter: blur(10px);
}

.nexus-testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--nexus-primary);
    box-shadow: var(--nexus-shadow);
}

.nexus-testimonial-header {
    margin-bottom: 15px;
}

.nexus-testimonial-author {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--nexus-primary);
}

.nexus-testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--nexus-gray-light);
    font-style: italic;
}

/* FAQ Section */
.nexus-faq {
    position: relative;
    padding: 100px 0;
    z-index: 1;
}

.nexus-faq-list {
    max-width: 800px;
    margin: 60px auto 0;
}

.nexus-faq-item {
    margin-bottom: 20px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(86, 137, 254, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--nexus-transition);
}

.nexus-faq-item:hover {
    border-color: var(--nexus-primary);
}

.nexus-faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    text-align: left;
    color: var(--nexus-white);
    font-size: 16px;
    font-weight: 600;
    transition: var(--nexus-transition);
}

.nexus-faq-question:hover {
    color: var(--nexus-primary);
}

.nexus-faq-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--nexus-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.nexus-faq-text {
    flex: 1;
}

.nexus-faq-icon {
    flex-shrink: 0;
    font-size: 24px;
    font-weight: 300;
    transition: var(--nexus-transition);
    color: var(--nexus-primary);
}

.nexus-faq-question[aria-expanded="true"] .nexus-faq-icon {
    transform: rotate(45deg);
}

.nexus-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
}

.nexus-faq-item.active .nexus-faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.nexus-faq-answer p {
    color: var(--nexus-gray-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Footer */
.nexus-footer {
    position: relative;
    background: var(--nexus-dark);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(86, 137, 254, 0.1);
    z-index: 1;
}

.nexus-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.nexus-footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.nexus-footer-description {
    font-size: 14px;
    color: var(--nexus-gray-light);
    line-height: 1.7;
}

.nexus-footer-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--nexus-white);
    margin-bottom: 20px;
}

.nexus-footer-links {
    list-style: none;
}

.nexus-footer-links li {
    margin-bottom: 12px;
}

.nexus-footer-link {
    color: var(--nexus-gray-light);
    text-decoration: none;
    font-size: 14px;
    transition: var(--nexus-transition);
}

.nexus-footer-link:hover {
    color: var(--nexus-primary);
    padding-left: 5px;
}

.nexus-footer-help {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.nexus-help-link {
    display: inline-block;
    transition: var(--nexus-transition);
    opacity: 0.7;
}

.nexus-help-link:hover {
    opacity: 1;
    transform: scale(1.1);
}

.nexus-help-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.nexus-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(86, 137, 254, 0.1);
}

.nexus-footer-copyright {
    font-size: 14px;
    color: var(--nexus-gray-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .nexus-brands-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .nexus-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--nexus-dark);
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: right 0.3s ease-out;
        z-index: 999;
        border-left: 1px solid rgba(86, 137, 254, 0.2);
    }
    
    .nexus-nav.active {
        right: 0;
    }
    
    .nexus-nav-list {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        align-items: flex-start;
    }
    
    .nexus-nav-link {
        font-size: 18px;
        width: 100%;
        padding: 12px 0;
    }
    
    .nexus-menu-toggle {
        display: flex;
    }
    
    .nexus-brands-showcase {
        gap: 20px;
    }
    
    .nexus-power-asymmetric-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .nexus-features-grid {
        grid-template-columns: 1fr;
    }
    
    .nexus-hero-cta {
        flex-direction: column;
    }
    
    .nexus-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nexus-container {
        padding: 0 15px;
    }
    
    .nexus-hero {
        padding: 100px 0 60px;
    }
    
    .nexus-brands,
    .nexus-power,
    .nexus-testimonials,
    .nexus-faq {
        padding: 60px 0;
    }
    
    .nexus-brands-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nexus-brand-showcase-card {
        padding: 30px 20px;
    }
    
    .nexus-brand-logo-container {
        width: 140px;
        height: 140px;
    }
    
    .nexus-brand-logo-main {
        max-width: 120px;
        max-height: 120px;
    }
    
    .nexus-brand-title-main {
        font-size: 24px;
    }
    
    .nexus-power-asymmetric-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nexus-features-grid {
        grid-template-columns: 1fr;
    }
    
    .nexus-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .nexus-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .nexus-hero-title {
        font-size: 28px;
    }

        .nexus-brands-showcase {
        grid-template-columns: 1fr;
    }
    
    .nexus-section-title {
        font-size: 24px;
    }
    
    .nexus-brand-card,
    .nexus-testimonial-card {
        padding: 20px;
    }
}

/* Page Content Styles */
.nexus-page-content {
    min-height: calc(100vh - 200px);
}

/* Policy Article Styles */
.nexus-policy-article {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.6);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid rgba(86, 137, 254, 0.2);
}

.nexus-page-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--nexus-white);
}

.nexus-page-intro {
    color: var(--nexus-gray-light);
    margin-bottom: 40px;
    font-size: 14px;
}

.nexus-policy-section {
    margin-bottom: 40px;
}

.nexus-policy-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--nexus-primary);
    margin-bottom: 15px;
}

.nexus-policy-subheading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--nexus-white);
    margin-top: 25px;
    margin-bottom: 15px;
}

.nexus-policy-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.nexus-policy-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--nexus-gray-light);
    line-height: 1.7;
}

.nexus-policy-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--nexus-primary);
    font-weight: bold;
}

.nexus-policy-section p {
    color: var(--nexus-gray-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Contact Page Styles */
.nexus-contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.nexus-contact-content {
    background: rgba(30, 41, 59, 0.6);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid rgba(86, 137, 254, 0.2);
}

.nexus-contact-form {
    margin-top: 40px;
}

.nexus-form-group {
    margin-bottom: 25px;
}

.nexus-form-label {
    display: block;
    font-weight: 600;
    color: var(--nexus-white);
    margin-bottom: 8px;
    font-size: 15px;
}

.nexus-form-input,
.nexus-form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(86, 137, 254, 0.3);
    border-radius: 8px;
    color: var(--nexus-white);
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    transition: var(--nexus-transition);
}

.nexus-form-input:focus,
.nexus-form-textarea:focus {
    outline: none;
    border-color: var(--nexus-primary);
    box-shadow: 0 0 0 3px rgba(86, 137, 254, 0.1);
}

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

.nexus-form-submit {
    width: 100%;
    margin-top: 10px;
}

.nexus-contact-info {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(86, 137, 254, 0.2);
}

.nexus-contact-info-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--nexus-primary);
    margin-bottom: 15px;
}

.nexus-contact-info p {
    color: var(--nexus-gray-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Responsible Play Styles */
.nexus-help-organizations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.nexus-help-org-card {
    background: rgba(86, 137, 254, 0.1);
    border: 1px solid rgba(86, 137, 254, 0.3);
    border-radius: 12px;
    padding: 25px;
    transition: var(--nexus-transition);
}

.nexus-help-org-card:hover {
    border-color: var(--nexus-primary);
    transform: translateY(-5px);
}

.nexus-help-org-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--nexus-primary);
    margin-bottom: 12px;
}

.nexus-help-org-card p {
    color: var(--nexus-gray-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Screen reader only class */
.nexus-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Responsive adjustments for page styles */
@media (max-width: 768px) {
    .nexus-policy-article,
    .nexus-contact-content {
        padding: 30px 20px;
    }
    
    .nexus-page-title {
        font-size: 28px;
    }
    
    .nexus-help-organizations {
        grid-template-columns: 1fr;
    }
    
    .nexus-page-intro {
        font-size: 16px;
    }
}

