/* ================================
   SYNCOPS - Premium Dark Theme
   ================================ */

/* CSS Reset & Variables */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #0f0f18;
    --bg-card: rgba(15, 15, 30, 0.6);
    --bg-card-hover: rgba(20, 20, 40, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-border: rgba(255, 255, 255, 0.06);

    --text-primary: #e8e8f0;
    --text-secondary: #8888a8;
    --text-muted: #555570;

    --accent-primary: #7c3aed;
    --accent-secondary: #a855f7;
    --accent-tertiary: #c084fc;
    --accent-glow: rgba(124, 58, 237, 0.3);

    --gradient-primary: linear-gradient(135deg, #7c3aed, #a855f7, #c084fc);
    --gradient-bg: linear-gradient(180deg, #0a0a0f 0%, #0f0f18 50%, #0a0a0f 100%);
    --gradient-card: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(168, 85, 247, 0.05));

    --cyan: #06b6d4;
    --green: #22c55e;
    --yellow: #eab308;
    --red: #ef4444;
    --pink: #ec4899;
    --orange: #f97316;

    /* Spacing */
    --section-padding: 120px 0;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--accent-glow);

    /* Font */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ================================
   Particle Canvas
   ================================ */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ================================
   3D Tilt Logo
   ================================ */
.tilt-logo-wrapper {
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
}

.tilt-logo-inner {
    position: relative;
    width: 280px;
    height: 280px;
    transform-style: preserve-3d;
    will-change: transform;
}

.tilt-logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.3),
        0 0 80px rgba(6, 182, 212, 0.15),
        0 0 120px rgba(124, 58, 237, 0.1);
    border: 3px solid rgba(6, 182, 212, 0.25);
    animation: logoFloat 6s ease-in-out infinite;
}

.tilt-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    transform: translate(-50%, -50%) translateZ(-10px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, rgba(124, 58, 237, 0.1) 40%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
    animation: glowPulse 3s ease-in-out infinite;
}

.tilt-logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    transform: translate(-50%, -50%) translateZ(-20px);
    border-radius: 50%;
    border: 1px solid rgba(6, 182, 212, 0.15);
    z-index: 0;
    animation: ringRotate 12s linear infinite;
}

.tilt-logo-ring::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.8);
}

.tilt-logo-ring.ring-2 {
    width: 370px;
    height: 370px;
    border-color: rgba(124, 58, 237, 0.1);
    animation: ringRotate 18s linear infinite reverse;
}

.tilt-logo-ring.ring-2::before {
    background: var(--accent-secondary);
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.8);
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0) translateZ(25px);
    }

    50% {
        transform: translateY(-12px) translateZ(25px);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) translateZ(-10px) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) translateZ(-10px) scale(1.08);
    }
}

@keyframes ringRotate {
    from {
        transform: translate(-50%, -50%) translateZ(-20px) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) translateZ(-20px) rotate(360deg);
    }
}

/* ================================
   Container
   ================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================
   Navbar
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bg-glass-border);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1.4rem;
}

.nav-logo-img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 0 16px rgba(6, 182, 212, 0.45);
    border: 1.5px solid rgba(6, 182, 212, 0.35);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 0 24px rgba(6, 182, 212, 0.7);
}

.logo-text {
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.01em;
}

.logo-text .accent {
    background: linear-gradient(135deg, #06b6d4, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: var(--bg-glass);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav Actions (Login & Profile) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.35);
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: var(--font-main);
}

.btn-login:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
}

.btn-login.hidden {
    display: none !important;
}

/* User Profile Menu in Nav */
/* Global Utility */
.hidden {
    display: none !important;
}

.user-profile-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--bg-glass-border);
    cursor: pointer;
    transition: all var(--transition-base);
    user-select: none;
    height: 42px;
}

.user-profile-menu:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(6, 182, 212, 0.3);
}

.user-profile-menu.hidden {
    display: none !important;
}

.user-avatar {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: white;
    background: #5865F2;
    box-shadow: 0 0 10px rgba(88, 101, 242, 0.4);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.user-avatar i {
    font-size: 0.95rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar.google {
    background: #ea4335;
    box-shadow: 0 0 10px rgba(234, 67, 53, 0.4);
}

.user-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    max-width: 130px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
}

.profile-arrow {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform var(--transition-base);
}

.user-profile-menu.open .profile-arrow {
    transform: rotate(180deg);
}

/* Profile Dropdown */
.profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 210px;
    background: #141b24;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: 1002;
}

.user-profile-menu.open .profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 6px 8px 8px;
}

.dropdown-header strong {
    display: block;
    font-size: 0.9rem;
    color: #ffffff;
}

.dropdown-header span {
    display: block;
    font-size: 0.75rem;
    color: #38bdf8;
    margin-top: 2px;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 6px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.84rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.dropdown-logout {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.84rem;
    color: #f87171;
    background: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-main);
    text-align: left;
}

.dropdown-logout:hover {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
}

/* ================================
   Hero Section
   ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    z-index: 1;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--accent-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.7s ease;
}

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

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.9s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--bg-glass-border);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: var(--bg-glass);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: fadeInUp 1s ease;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

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

/* Hero Visual */
.hero-visual {
    flex: 1;
    max-width: 500px;
    animation: fadeInRight 1s ease;
}

.code-window {
    background: rgba(15, 15, 30, 0.8);
    border-radius: var(--radius-lg);
    border: 1px solid var(--bg-glass-border);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--bg-glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.code-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
}

.dot.red {
    background: var(--red);
}

.dot.yellow {
    background: var(--yellow);
}

.dot.green {
    background: var(--green);
}

.code-title {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.code-body {
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.8;
    overflow-x: auto;
}

.code-body pre {
    margin: 0;
}

.code-keyword {
    color: var(--accent-secondary);
}

.code-var {
    color: var(--cyan);
}

.code-prop {
    color: var(--pink);
}

.code-string {
    color: var(--green);
}

.code-func {
    color: var(--yellow);
}

/* ================================
   Sections
   ================================ */
.section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.15);
    color: var(--accent-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ================================
   Services Grid
   ================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    border: 1px solid var(--bg-glass-border);
    transition: all var(--transition-base);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.2);
    background: var(--bg-card-hover);
}

.service-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-icon.bot {
    background: rgba(124, 58, 237, 0.15);
    color: var(--accent-secondary);
}

.service-icon.dev {
    background: rgba(6, 182, 212, 0.15);
    color: var(--cyan);
}

.service-icon.extra {
    background: rgba(34, 197, 94, 0.15);
    color: var(--green);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card>p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.service-features li i {
    color: var(--accent-secondary);
    font-size: 0.75rem;
}

/* ================================
   Products Grid
   ================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.product-card {
    position: relative;
    background: #141b24;
    border-radius: 22px;
    padding: 38px 28px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(94, 160, 210, 0.35);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.6), 0 0 28px rgba(56, 189, 248, 0.12);
}

.product-card.featured {
    border-color: rgba(94, 175, 220, 0.3);
    background: linear-gradient(180deg, #17212c 0%, #121822 100%);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.5), 0 0 32px rgba(56, 189, 248, 0.12);
}

.product-card.featured:hover {
    transform: translateY(-6px);
    border-color: rgba(94, 185, 230, 0.5);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.65), 0 0 38px rgba(56, 189, 248, 0.2);
}

.product-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.product-subtitle {
    font-size: 0.88rem;
    color: #8fa0b5;
    line-height: 1.5;
    margin-bottom: 26px;
    min-height: 42px;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 28px;
    padding-bottom: 0;
    border-bottom: none;
}

.price-amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: #7dd3fc;
    text-shadow: 0 0 25px rgba(56, 189, 248, 0.35);
    letter-spacing: -0.02em;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    font-weight: 700;
    color: #bae6fd;
    opacity: 0.95;
    letter-spacing: -0.01em;
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 34px;
    flex-grow: 1;
    padding: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: #cbd5e1;
    font-weight: 500;
}

.product-features li i {
    color: #10b981;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.product-btn {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(90deg, #468c96 0%, #3d75a6 100%);
    box-shadow: 0 4px 18px rgba(60, 130, 165, 0.28);
    transition: all 0.25s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    font-family: var(--font-main);
}

.product-btn:hover {
    background: linear-gradient(90deg, #4fa0ab 0%, #4684bb 100%);
    box-shadow: 0 6px 26px rgba(60, 130, 165, 0.45);
    transform: translateY(-2px);
}

.product-btn:active {
    transform: translateY(0);
}

/* ================================
   Why Choose Us
   ================================ */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.why-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    transition: all var(--transition-base);
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: var(--shadow-glow);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(124, 58, 237, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.3rem;
    color: var(--accent-secondary);
    transition: all var(--transition-base);
}

.why-card:hover .why-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    text-align: center;
}

.testimonials-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.testimonials-slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    min-height: 220px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--bg-glass-border);
    opacity: 0;
    transform: translateX(30px);
    transition: all var(--transition-slow);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.testimonial-stars {
    margin-bottom: 16px;
    color: var(--yellow);
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
}

.testimonial-author div:last-child {
    text-align: left;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.t-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.t-dot.active {
    background: var(--accent-primary);
    width: 28px;
    border-radius: 5px;
}

/* ================================
   Team Section
   ================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.team-card-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.team-card:hover .team-card-inner {
    border-color: rgba(124, 58, 237, 0.25);
    transform: translateY(-4px);
}

.team-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.team-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 18px;
}

.avatar-placeholder {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    border: 3px solid var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.avatar-placeholder.purple {
    background: linear-gradient(135deg, #6d28d9, #7c3aed);
}

.team-status {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    border-radius: var(--radius-full);
    border: 3px solid var(--bg-primary);
}

.team-status.online {
    background: var(--green);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.85rem;
    color: var(--accent-secondary);
    font-weight: 500;
    display: block;
    margin-bottom: 14px;
}

.team-bio {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 18px;
}

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

.skill-tag {
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.15);
    font-size: 0.75rem;
    color: var(--accent-tertiary);
    font-weight: 500;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--bg-glass);
    border: 1px solid var(--bg-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

/* ================================
   About Section
   ================================ */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    transition: all var(--transition-base);
}

.highlight:hover {
    border-color: rgba(124, 58, 237, 0.2);
    transform: translateX(6px);
}

.highlight-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: rgba(124, 58, 237, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.highlight strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

.highlight span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Tech Stack */
.tech-stack {
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-xl);
    padding: 32px;
}

.tech-stack h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.tech-stack h4 i {
    color: var(--accent-secondary);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all var(--transition-base);
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.tech-item:hover {
    border-color: rgba(124, 58, 237, 0.2);
    background: rgba(124, 58, 237, 0.05);
    color: var(--text-primary);
}

.tech-item i {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
    color: var(--accent-secondary);
}

/* ================================
   Contact Section
   ================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    transition: all var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.2);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.contact-card.discord .contact-card-icon {
    background: rgba(88, 101, 242, 0.15);
    color: #5865F2;
}

.contact-card.email .contact-card-icon {
    background: rgba(124, 58, 237, 0.15);
    color: var(--accent-secondary);
}

.contact-card.social .contact-card-icon {
    background: rgba(236, 72, 153, 0.15);
    color: var(--pink);
}

.contact-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-card>p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--accent-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-base);
}

.contact-link:hover {
    color: var(--accent-tertiary);
    gap: 12px;
}

.contact-link i {
    font-size: 0.75rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-xl);
    padding: 36px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--accent-secondary);
    font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--bg-glass-border);
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: var(--font-main);
    transition: all var(--transition-base);
    outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238888a8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-5-5h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

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

/* ================================
   Footer
   ================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--bg-glass-border);
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-top: 14px;
    max-width: 280px;
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 10px;
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: var(--accent-secondary);
    padding-left: 6px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-glass);
    border: 1px solid var(--bg-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all var(--transition-base);
}

.social-icons a:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid var(--bg-glass-border);
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ================================
   Scroll to Top
   ================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   Login Modal
   ================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 14, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: #131922;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 32px 32px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(6, 182, 212, 0.15);
    transform: translateY(20px) scale(0.96);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.modal-overlay.open .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 28px;
}

.modal-logo-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 18px;
    padding: 3px;
    background: linear-gradient(135deg, #06b6d4, #7c3aed);
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.modal-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.modal-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.social-login-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.btn-social {
    width: 100%;
    padding: 15px 20px;
    border-radius: 14px;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.25s ease;
    font-family: var(--font-main);
}

.btn-discord {
    background: #5865F2;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.35);
}

.btn-discord i {
    font-size: 1.35rem;
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(88, 101, 242, 0.55);
}

.btn-google {
    background: #ffffff;
    color: #1e293b;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.btn-google:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(255, 255, 255, 0.25);
}

.modal-footer {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-footer i {
    color: var(--green);
}

/* ================================
   Discord OAuth2 Screen Styling
   ================================ */
.discord-oauth-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: #2b2d31;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(88, 101, 242, 0.25);
    transform: translateY(20px) scale(0.96);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    color: #dbdee1;
    font-family: var(--font-main);
}

.modal-overlay.open .discord-oauth-card {
    transform: translateY(0) scale(1);
}

.discord-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.discord-brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #5865F2;
    color: white;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.discord-modal-close {
    position: static;
    background: rgba(255, 255, 255, 0.08);
}

.discord-oauth-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f2f3f5;
    margin-bottom: 20px;
    line-height: 1.4;
}

.discord-app-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #1e1f22;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.discord-app-icon img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}

.discord-app-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.discord-badge-verified {
    font-size: 0.76rem;
    color: #5865F2;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.discord-user-switch {
    background: #1e1f22;
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.discord-current-user {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: #949ba4;
}

.discord-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #5865F2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.discord-current-user strong {
    color: #f2f3f5;
}

.discord-switch-link {
    color: #00a8fc;
    text-decoration: none;
}

.discord-permissions-box {
    margin-bottom: 24px;
}

.permissions-title {
    font-size: 0.72rem;
    font-weight: 800;
    color: #949ba4;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.discord-perm-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
}

.discord-perm-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
}

.discord-perm-list li i {
    color: #23a55a;
    font-size: 0.85rem;
    margin-top: 3px;
}

.discord-perm-list strong {
    display: block;
    color: #dbdee1;
    font-weight: 600;
    font-size: 0.88rem;
}

.discord-perm-list span {
    display: block;
    color: #949ba4;
    font-size: 0.78rem;
}

.discord-oauth-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-discord-cancel {
    background: transparent;
    border: none;
    color: #f2f3f5;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-discord-cancel:hover {
    text-decoration: underline;
}

.btn-discord-authorize {
    background: #5865F2;
    color: white;
    border: none;
    padding: 11px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(88, 101, 242, 0.4);
}

.btn-discord-authorize:hover {
    background: #4752c4;
    transform: translateY(-1px);
}

.discord-direct-vpn-box {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.discord-direct-vpn-link {
    font-size: 0.78rem;
    color: #949ba4;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.discord-direct-vpn-link:hover {
    color: #5865F2;
    text-decoration: underline;
}

/* ================================
   Google Dark OAuth2 Screen (Exact Match)
   ================================ */
.google-oauth-full-wrapper {
    width: 100%;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.google-oauth-card-exact {
    position: relative;
    width: 100%;
    background: #131314;
    border-radius: 28px;
    padding: 48px 44px;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e3e3e3;
    font-family: 'Roboto', 'Inter', sans-serif;
    transform: translateY(20px) scale(0.97);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .google-oauth-card-exact {
    transform: translateY(0) scale(1);
}

.google-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: rgba(255, 255, 255, 0.06);
    color: #c4c7c5;
}

.google-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* Left Column */
.google-oauth-left {
    display: flex;
    flex-direction: column;
}

.google-brand-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #e3e3e3;
    margin-bottom: 28px;
}

.google-choose-title {
    font-size: 2.2rem;
    font-weight: 400;
    color: #e3e3e3;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.google-choose-subtitle {
    font-size: 1rem;
    color: #c4c7c5;
    line-height: 1.5;
}

.google-app-link {
    color: #a8c7fa;
    font-weight: 500;
}

.google-api-status-badge {
    margin-top: auto;
    padding-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #8ab4f8;
    background: rgba(66, 133, 244, 0.08);
    border: 1px solid rgba(66, 133, 244, 0.2);
    border-radius: 20px;
    padding: 6px 14px;
    width: fit-content;
}

.google-api-status-badge i {
    font-size: 0.9rem;
    color: #4285f4;
}

/* Right Column */
.google-oauth-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.google-accounts-container {
    display: flex;
    flex-direction: column;
}

.google-account-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.google-account-row:hover {
    background: #1f1f20;
}

.google-avatar-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.google-avatar-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #c4c7c5;
    flex-shrink: 0;
}

.google-account-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.google-account-text strong {
    font-size: 0.96rem;
    font-weight: 500;
    color: #e3e3e3;
}

.google-account-text span {
    font-size: 0.82rem;
    color: #c4c7c5;
}

.google-row-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 2px 0;
}

/* Custom Email Input View */
.google-custom-email-view {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 10px 0;
}

.google-custom-email-view.hidden {
    display: none !important;
}

.google-back-btn {
    align-self: flex-start;
    background: none;
    border: none;
    color: #a8c7fa;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin-bottom: 6px;
}

.google-input-heading {
    font-size: 1.4rem;
    font-weight: 400;
    color: #e3e3e3;
}

.google-input-desc {
    font-size: 0.9rem;
    color: #c4c7c5;
    margin-top: -8px;
    margin-bottom: 8px;
}

.google-input-group input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid #8e918f;
    color: #e3e3e3;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.google-input-group input:focus {
    border-color: #a8c7fa;
    box-shadow: 0 0 0 1px #a8c7fa;
}

.google-input-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.btn-google-next {
    background: #a8c7fa;
    color: #062e6f;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-google-next:hover {
    background: #c2e7ff;
}

/* Bottom Bar */
.google-oauth-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    font-size: 0.78rem;
    color: #8e918f;
}

.google-lang-select {
    cursor: pointer;
}

.google-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.google-links a {
    color: #8e918f;
    text-decoration: none;
    transition: color 0.2s ease;
}

.google-links a:hover {
    color: #c4c7c5;
}

@media (max-width: 768px) {
    .google-oauth-card-exact {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 24px;
    }

    .google-choose-title {
        font-size: 1.8rem;
    }
}

/* ================================
   Toast Notifications
   ================================ */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    background: #141b24;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px 20px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    max-width: 400px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.toast.success {
    border-color: rgba(34, 197, 94, 0.4);
}

.toast.success .toast-icon {
    color: var(--green);
}

.toast.info {
    border-color: rgba(56, 189, 248, 0.4);
}

.toast.info .toast-icon {
    color: #38bdf8;
}

.toast.warning {
    border-color: rgba(234, 179, 8, 0.4);
}

.toast.warning .toast-icon {
    color: var(--yellow);
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-description {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 500px;
        width: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card.featured {
        transform: scale(1);
    }

    .product-card.featured:hover {
        transform: translateY(-8px);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        padding: 100px 30px 30px;
        gap: 4px;
        transition: right var(--transition-base);
        border-left: 1px solid var(--bg-glass-border);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

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

    .why-us-grid {
        grid-template-columns: 1fr 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 14px auto 0;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .btn-login {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .modal-card {
        padding: 32px 20px 24px;
    }

    .modal-title {
        font-size: 1.35rem;
    }

    .toast-container {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }

    .toast {
        min-width: auto;
        width: 100%;
        font-size: 0.84rem;
        padding: 12px 16px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form-wrapper {
        padding: 24px;
    }

    .hero {
        padding-top: 120px;
    }
}