* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: white;
    overflow-x: hidden;
}

/* Background */
.background {
    position: fixed;
    inset: 0;
    z-index: -10;
    background: linear-gradient(to bottom right, #020617, #312e81, #020617);
}

.diagonal-stripes {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: repeating-linear-gradient(45deg,
            transparent,
            transparent 50px,
            rgba(139, 92, 246, 0.3) 50px,
            rgba(139, 92, 246, 0.3) 51px);
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

.orb-1 {
    top: 80px;
    right: 25%;
    width: 288px;
    height: 288px;
    background: rgba(168, 85, 247, 0.2);
}

.orb-2 {
    bottom: 160px;
    left: 33%;
    width: 320px;
    height: 320px;
    background: rgba(99, 102, 241, 0.15);
    animation-delay: 1.5s;
}

.orb-3 {
    top: 50%;
    right: 33%;
    width: 256px;
    height: 256px;
    background: rgba(96, 165, 250, 0.1);
    animation-delay: 3s;
}

.vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent, rgba(0, 0, 0, 0.3));
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1152px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 32px;
}

.hero-badge span {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
}

.hero-title {
    font-size: 6rem;
    font-weight: bold;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: 2rem;
    color: #e5e7eb;
    margin-bottom: 48px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

/* Vertical Navbar */
.navbar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 1rem;
    border-radius: 1rem 0 0 1rem;
    border-right: #fff solid 1px;
    position: fixed;
    left: 93%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: auto;
}

.navbar-brand {
    display: none;
}

.navbar-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    ;
    border-radius: 0.5rem;
}

.navbar-links a {
    position: relative;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.navbar-links a:hover::after {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: row;
        bottom: 0;
        top: auto;
        left: 50%;
        transform: translate(-50%, 0);
        border-radius: 1rem 1rem 0 0;
        border-right: none;
        border-top: #fff solid 1px;
        width: auto;
    }

    .navbar-links {
        flex-direction: row;
    }
    
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 24px 32px;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: white;
    color: black;
}

.btn-primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-icon {
    margin-left: 8px;
    width: 20px;
    height: 20px;
}

.btn-submit {
    width: 100%;
    background: white;
    color: black;
}

.btn-submit:hover {
    background: #f3f4f6;
}

/* Common Section Styles */
.section {
    padding: 128px 24px;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 672px;
    margin: 0 auto;
    font-weight: 300;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-card {
    position: relative;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.service-description {
    color: #9ca3af;
    font-weight: 300;
}

/* About Section */
.who-am-i-wrapper {
    margin-bottom: 80px;
}

.who-am-i-card {
    background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.1), rgba(99, 102, 241, 0.1));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
    max-width: 896px;
    margin: 0 auto;
}

.profile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.profile-avatar {
    flex-shrink: 0;
    width: 128px;
    height: 128px;
    background: linear-gradient(to bottom right, #a855f7, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-icon {
    width: 164px;
    height: 164px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.868);
    border-radius: 50%;
}

.profile-info {
    flex: 1;
    text-align: center;
}

.profile-heading {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.discord-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 9999px;
    padding: 8px 16px;
    color: #a5b4fc;
    margin-bottom: 16px;
}

.discord-icon {
    width: 20px;
    height: 20px;
}

.profile-description {
    color: #d1d5db;
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 1.75;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
}

.card-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-purple {
    background: rgba(168, 85, 247, 0.2);
}

.icon-purple .icon {
    color: #c084fc;
}

.icon-indigo {
    background: rgba(99, 102, 241, 0.2);
}

.icon-indigo .icon {
    color: #a5b4fc;
}

.icon-blue {
    background: rgba(59, 130, 246, 0.2);
}

.icon-blue .icon {
    color: #60a5fa;
}

.icon {
    width: 24px;
    height: 24px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.card-description {
    color: #9ca3af;
    font-weight: 300;
}

.feature-card {
    background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.1), rgba(99, 102, 241, 0.1));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
}

.feature-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.feature-text {
    color: #d1d5db;
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.feature-footer {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-cta {
    font-weight: 500;
    font-size: 1.125rem;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.process-step {
    position: relative;
    text-align: center;
}

.process-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 24px;
}

.process-icon {
    width: 40px;
    height: 40px;
}

.process-number {
    font-size: 4rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}

.process-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.process-description {
    color: #9ca3af;
    font-weight: 300;
}

/* Technologies Section */
.tech-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.tech-badge {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Why Choose Us Section */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
    transform: scale(1.1);
}

.benefit-icon {
    width: 32px;
    height: 32px;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.benefit-description {
    color: #9ca3af;
    font-weight: 300;
    font-size: 0.875rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 1152px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 300;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 16px;
    padding: 20px 24px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon .icon {
    width: 24px;
    height: 24px;
}

.contact-method-label {
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-method-value {
    color: #9ca3af;
    font-size: 0.875rem;
}

.response-time-card {
    background: white;
    color: black;
    border-radius: 24px;
    padding: 32px;
}

.response-time-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.response-time-text {
    color: #374151;
    margin-bottom: 16px;
    font-weight: 300;
}

.response-time-footer {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 300;
}

/* Footer */
.footer {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 64px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo {
    width: 32px;
    height: 32px;
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-tagline {
    color: #9ca3af;
    font-weight: 300;
    font-size: 0.875rem;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #9ca3af;
    font-weight: 300;
    font-size: 0.875rem;
}

.discord-link {
    color: #9ca3af;
    text-decoration: none;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 300;
}

.footer-built-with {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 300;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 8rem;
    }

    .section-title {
        font-size: 7rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-content {
        flex-direction: row;
        text-align: left;
    }

    .profile-info {
        text-align: left;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section {
        padding: 64px 24px;
    }

    .section-title {
        font-size: 3rem;
    }
}

::-webkit-scrollbar{
    display: none;
}