* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= HEADER ================= */

.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* ================= NAVBAR ================= */

.navbar {
    padding: 14px 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #1f1f1f;
}

.nav-container {
    width: min(95%, 1800px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ================= LOGO ================= */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo span {
    font-size: 18px;
    font-weight: 600;
}

/* ================= NAV LINKS ================= */

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: #9ca3af;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
}

.nav-link:hover {
    color: white;
}

/* underline animation */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: white;
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: white;
}

/* ================= HAMBURGER ================= */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        background: #020617;

        transition: 0.3s ease;
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 18px;
        color: white;
    }
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #6366f1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #6366f1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Floating Container */
.floating-cards {
    position: relative;
    width: 320px;
    height: 320px;
}

/* Base Card Style */
.card-float {
    position: absolute;
    font-size: 3.5rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.95;

    /* depth + smooth feel */
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.25));
    transition: transform 0.3s ease;
}

/* Hover effect (optional but nice) */
.card-float:hover {
    transform: scale(1.15);
}

/* Spread positions (clean + balanced layout) */
.card-float:nth-child(1) {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
    transform: rotate(-6deg);
}

.card-float:nth-child(2) {
    top: 0%;
    right: 10%;
    animation-delay: 1s;
    transform: rotate(6deg);
}

.card-float:nth-child(3) {
    bottom: 5%;
    left: 20%;
    animation-delay: 2s;
    transform: rotate(-4deg);
}

.card-float:nth-child(4) {
    bottom: 0%;
    right: 5%;
    animation-delay: 3s;
    transform: rotate(5deg);
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ================= SERVICES ================= */

.services {
    padding: 100px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1e293b;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* CARD */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Hover = lift */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ICON */
.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* BADGE */
.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* TEXT */
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* FEATURES */
.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* PRICE */
.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.service-suffix {
    color: #64748b;
    font-size: 1rem;
}

/* BUTTON */
.service-card .btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 1rem;

    cursor: pointer;
    border-radius: 50px;

    transition: all 0.25s ease;
}

/* Hover effect */
.service-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Click effect */
.service-card .btn:active {
    transform: scale(0.96);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Features */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

/* CTA */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #64748b;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Responsive */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        background: #020617;

        transition: 0.3s ease;
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 18px;
        color: white;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ================= LEGAL PAGES (DARK THEME) ================= */

/* HERO */
.legal-hero {
    padding: 120px 0 80px;
    text-align: center;

    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.legal-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

/* CONTENT */
.legal-content {
    padding: 80px 0;
    background: #000;
    min-height: 80vh;
}

/* DOCUMENT BOX */
.legal-document {
    max-width: 800px;
    margin: 0 auto;

    background: #020617;
    padding: 3rem;

    border-radius: 16px;
    border: 1px solid #1e293b;

    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* HEADINGS */
.legal-document h2 {
    font-size: 1.4rem;
    color: white;

    margin: 2rem 0 1rem;

    border-left: 3px solid #6366f1;
    padding-left: 1rem;
}

.legal-document h2:first-of-type {
    margin-top: 0;
}

/* TEXT */
.legal-document p,
.legal-document ul {
    margin-bottom: 1.4rem;
    line-height: 1.7;
    color: #94a3b8;
}

/* LISTS */
.legal-document ul {
    padding-left: 1.5rem;
}

.legal-document ul li {
    margin-bottom: 0.6rem;
}

/* LINKS */
.legal-document a {
    color: #6366f1;
    text-decoration: none;
}

.legal-document a:hover {
    text-decoration: underline;
}

/* FOOTER BOX */
.legal-footer {
    margin-top: 3rem;
    padding: 1.5rem;

    border-radius: 12px;

    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);

    text-align: center;
}

.legal-footer p {
    color: #c7d2fe;
    margin: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .legal-hero h1 {
        font-size: 2rem;
    }

    .legal-document {
        padding: 2rem 1.5rem;
    }
}

/* ================= ABOUT PAGE ================= */

/* HERO */
.about-hero {
    padding: 120px 0 80px;
    min-height: 80vh;

    display: flex;
    align-items: center;

    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.about-hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.about-hero .hero-content {
    flex: 1;
    max-width: 600px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero p {
    opacity: 0.9;
}

/* PROFILE SIDE */
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.profile-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);

    padding: 3rem 2rem;
    border-radius: 20px;

    text-align: center;

    border: 1px solid rgba(255,255,255,0.15);

    transition: 0.3s;
}

.profile-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.profile-avatar {
    font-size: 5rem;
    margin-bottom: 1rem;
}

/* ================= STORY ================= */

.story-section {
    padding: 100px 0;
    background: #020617;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    padding: 2.5rem;

    background: #000;
    border-radius: 16px;

    border: 1px solid #1e293b;

    text-align: center;

    transition: 0.3s;
}

.story-card:hover {
    transform: translateY(-6px);
    border-color: #6366f1;
}

.story-number {
    font-size: 3rem;
    font-weight: 700;

    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin-bottom: 1rem;
}

.story-card h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.story-card p {
    color: #94a3b8;
}

/* ================= SKILLS ================= */

.skills-section {
    padding: 100px 0;
    background: #000;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.skill-card {
    padding: 2rem;

    background: #020617;
    border-radius: 16px;

    border: 1px solid #1e293b;

    text-align: center;

    transition: 0.3s;
}

.skill-card:hover {
    transform: translateY(-6px);
    border-color: #6366f1;
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.skill-card h3 {
    color: white;
}

.skill-card p {
    color: #94a3b8;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .about-hero .container {
        flex-direction: column;
        text-align: center;
    }

    .about-hero h1 {
        font-size: 2.3rem;
    }
}

/* ================= CONTACT PAGE ================= */

/* HERO (matches homepage) */
.contact-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;

    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ================= CONTACT OPTIONS ================= */

.contact-options {
    padding: 80px 0;
    background: #020617;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* CARD BASE */
.contact-card {
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;

    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* GRADIENT CARDS */
.whatsapp-card {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.discord-card {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
}

.email-card {
    background: linear-gradient(135deg, #EA4335, #FBBC04);
    color: white;
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* BUTTON FIXES */
.contact-card .btn {
    margin-top: 1rem;
}

.whatsapp-card .btn,
.email-card .btn {
    background: white;
    color: black;
}

.discord-card .btn {
    border: 2px solid white;
}

/* ================= CONTACT FORM ================= */

.contact-form-section {
    padding: 100px 0;
    background: #020617;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

/* GRID */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

/* LABEL */
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #e2e8f0;
}

/* INPUTS (dark theme) */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;

    background: #000;
    border: 1px solid #1e293b;
    border-radius: 12px;

    font-size: 1rem;
    color: white;

    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
}

/* ================= RESPONSE TIMES ================= */

.business-hours {
    padding: 100px 0;
    text-align: center;
    background: #000;
}

.business-hours h2 {
    color: white;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;

    max-width: 600px;
    margin: 2rem auto;
}

.hour-item {
    display: flex;
    justify-content: space-between;

    padding: 1rem;

    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 12px;

    color: #e2e8f0;
}

.availability-note {
    margin-top: 1rem;
    color: #64748b;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2.3rem;
    }
}

/* ================= PRODUCTS PAGE ================= */

.products-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.products-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.products-section {
    padding: 80px 0;
    background: #000;
}

/* GRID FIXED */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* PRODUCT CARD */
.product-card {
    background: #020617;
    border: 1px solid #1e293b;
    padding: 2rem;
    border-radius: 16px;
    transition: 0.3s;

    /* equal height + clean spacing */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: #6366f1;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
}

/* ICON */
.product-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* TEXT */
.product-card h3 {
    margin-bottom: 0.5rem;
    color: white;
}

.product-card p {
    color: #94a3b8;
    margin-bottom: 1rem;
}

/* LIST */
.product-card ul {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.product-card ul li {
    margin-bottom: 0.5rem;
    color: #cbd5f5;
}

/* PRICE */
.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.product-price span {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* BUTTON ALIGNMENT */
.product-card .btn {
    margin-top: auto;
    text-align: center;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= PRODUCT PAGES ================= */

/* HERO */
.product-hero {
    padding: 120px 20px 80px;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.product-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.product-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.product-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.product-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* PRICE */
.product-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1.5rem 0;
}

.product-price-large span {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
}

/* BUY BUTTON */
.buy-btn {
    margin-top: 1rem;
}

/* ================= FEATURES ================= */

.product-details {
    padding: 100px 0;
    background: #000;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-feature {
    background: #020617;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #1e293b;
    transition: 0.3s;
}

.product-feature:hover {
    transform: translateY(-6px);
    border-color: #6366f1;
}

.product-feature h3 {
    margin-bottom: 0.5rem;
    color: white;
}

.product-feature p {
    color: #94a3b8;
}

/* ================= INFO SECTION ================= */

.product-info {
    padding: 80px 0;
    background: #020617;
}

.product-info-list {
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
}

.product-info-list li {
    padding: 14px 0;
    border-bottom: 1px solid #1e293b;
    color: #cbd5f5;
}

/* ================= EXTRA (OPTIONAL SECTION) ================= */

.product-extra {
    padding: 80px 0;
    background: #000;
    text-align: center;
}

.product-extra p {
    color: #94a3b8;
    max-width: 600px;
    margin: auto;
}

/* ================= CTA SECTION ================= */

.product-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    text-align: center;
    color: white;
}

.product-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-cta p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .product-hero h1 {
        font-size: 2.2rem;
    }

    .product-price-large {
        font-size: 2rem;
    }

    .product-features-grid {
        grid-template-columns: 1fr;
    }
}

.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.service-disabled {
    opacity: 0.7;
}