/* Fonts */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/outfit-v15-latin-300.woff2') format('woff2'),
        url('fonts/outfit-v15-latin-300.woff') format('woff');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/outfit-v15-latin-regular.woff2') format('woff2'),
        url('fonts/outfit-v15-latin-regular.woff') format('woff');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/outfit-v15-latin-600.woff2') format('woff2'),
        url('fonts/outfit-v15-latin-600.woff') format('woff');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/outfit-v15-latin-700.woff2') format('woff2'),
        url('fonts/outfit-v15-latin-700.woff') format('woff');
}

:root {
    --bg-color: #0f1115;
    --card-bg: #1a1d23;
    --primary: #00d2ff;
    --primary-light: #6be4ff;
    --accent: #3a86ff;
    --vibrant-gradient: linear-gradient(135deg, #00d2ff 0%, #3a86ff 100%);
    --bg-gradient: radial-gradient(circle at top right, #1a1d23 0%, #0f1115 100%);
    --text-main: #f0f0f5;
    --text-muted: #a0a0ab;
    --white: #ffffff;
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(15, 17, 21, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

@media (max-width: 992px) {
    #header {
        padding: 8px 0;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

@media (max-width: 992px) {
    .logo {
        font-size: 1.2rem;
    }
}

.logo {
    letter-spacing: -0.5px;
}

.logo span {
    background: var(--vibrant-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
#hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background: url('hero.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 17, 21, 0.6) 0%, #0f1115 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

#hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

#hero h1 .accent {
    background: var(--vibrant-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero p {
    font-size: 1.2rem;
    color: var(--text-main);
    max-width: 650px;
    margin: 0 auto 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* AI Expert Section Redesign */
#ai-expert {
    padding: 100px 0;
}

.ai-use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.ai-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
    align-items: flex-start;
}

.ai-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ai-card-icon {
    font-size: 2.5rem;
    min-width: 60px;
    height: 60px;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.ai-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.ai-card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .ai-use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ai-card {
        padding: 2rem;
    }
}

/* Social Media Section */
#social-media {
    padding: 100px 0;
    background: rgba(168, 85, 247, 0.02);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.social-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
    align-items: flex-start;
}

.social-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: #a855f7;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.social-card-icon {
    font-size: 2.5rem;
    min-width: 60px;
    height: 60px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a855f7;
}

.social-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.social-card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-cta {
    margin-top: 4rem;
    text-align: center;
}

@media (max-width: 992px) {
    .social-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-card {
        padding: 2rem;
    }
}

.ai-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Buttons */
.btn {
    padding: 0.8rem 2.22rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--vibrant-gradient);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid var(--glass-border);
    margin-left: 1rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card .btn {
    margin-top: auto !important;
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
}

/* Hosting Section Redesign */
.hosting-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.hosting-card-large {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.05) 0%, var(--card-bg) 100%);
}

.h-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.h-info p {
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.h-info ul {
    list-style: none;
    margin-bottom: 2.5rem;
}

.h-info ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.h-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Plugin Banner */
.plugin-banner {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--accent);
}

.plugin-text .btn {
    margin-top: 1.5rem;
}

.plugin-icon {
    font-size: 5rem;
    opacity: 0.5;
}

/* Legal Content Subpage */
.legal-content h1 {
    margin-bottom: 2rem;
    color: var(--primary);
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Contact Section Refined */
#contact {
    background: linear-gradient(180deg, #0f1115 0%, #161a21 100%);
    position: relative;
    padding: 120px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-visuals {
    display: grid;
    gap: 2rem;
}

.contact-card-premium {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.contact-card-premium:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary);
    transform: translateX(10px);
}

.c-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.c-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.c-text p {
    color: var(--text-muted);
}

.form-premium {
    background: var(--card-bg);
    padding: 3.5rem;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-premium h4 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--text-main);
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 1.25rem;
    border-radius: 16px;
    color: var(--white);
    font-family: inherit;
    transition: var(--transition);
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    background: rgba(255, 255, 255, 0.05);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-style: italic;
}

.form-disclaimer a {
    color: var(--primary);
    text-decoration: underline;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.85rem;
}

/* Section Common */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* Mobile Nav Menu */
.nav-links.active {
    display: flex !important;
    position: absolute;
    top: 77px;
    /* Matches header + nav height */
    left: 0;
    width: 100%;
    background: rgba(15, 17, 21, 0.98);
    flex-direction: column;
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Menu Toggle / Burger Icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 10px;
    transition: var(--transition);
}

/* Burger Icon Animation */
.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 992px) {
    #hero {
        background-position: 70% center;
        height: 80vh;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(15, 17, 21, 0.4) 0%, #0f1115 100%);
    }

    #hero h1 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 2rem;
    }

    .menu-toggle {
        display: flex;
        cursor: pointer;
    }

    .nav-links {
        display: none;
    }

    .ai-box {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .plugin-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* --- High-End Packages Page Styles --- */
.packages-section {
    padding: 140px 0 100px;
}

.packages-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.packages-intro h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #a0a0ab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Category Grid Header */
.category-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.category-trigger {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-trigger::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--module-color);
    opacity: 0.03;
    transition: var(--transition);
}

.category-trigger:hover {
    transform: translateY(-10px);
    border-color: var(--module-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(var(--module-rgb), 0.1);
}

.category-trigger.active {
    background: rgba(var(--module-rgb), 0.1);
    border-color: var(--module-color);
    box-shadow: inset 0 0 20px rgba(var(--module-rgb), 0.05);
}

.cat-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.category-trigger h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.category-trigger span {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Module Themes */
.theme-social {
    --module-color: #a855f7;
    --module-rgb: 168, 85, 247;
}

.theme-hosting {
    --module-color: #00d2ff;
    --module-rgb: 0, 210, 255;
}

.theme-it {
    --module-color: #10b981;
    --module-rgb: 16, 185, 129;
}

/* Content Sections */
.module-content {
    display: none;
    animation: fadeInUp 0.5s ease forwards;
}

.module-content.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.module-header {
    text-align: center;
    margin-bottom: 4rem;
}

.module-header h2 {
    font-size: 2.5rem;
    color: var(--module-color);
    margin-bottom: 1rem;
}

/* Package Cards Remastered */
.package-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.package-card-premium {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
}

.package-card-premium::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--module-color), transparent);
}

.package-card-premium:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-8px);
    border-color: rgba(var(--module-rgb), 0.3);
}

.p-level {
    font-size: 0.85rem;
    color: var(--module-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.package-card-premium h4 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.p-price-tag {
    margin-bottom: 2rem;
}

.p-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.p-suffix {
    color: var(--text-muted);
    font-size: 1rem;
}

.p-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.p-features li {
    margin-bottom: 1rem;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.p-features li::before {
    content: ">";
    color: var(--module-color);
    font-size: 0.9rem;
}

/* Inquiry Card Refined */
.inquiry-premium-box {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(var(--module-rgb), 0.1) 0%, transparent 100%);
    border: 1px solid rgba(var(--module-rgb), 0.2);
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.inquiry-premium-box::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--module-color);
    filter: blur(100px);
    opacity: 0.1;
    top: -50px;
    right: -50px;
}

.inquiry-premium-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.inquiry-premium-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

@media (max-width: 1100px) {

    .category-hero-grid,
    .package-grid-v2 {
        grid-template-columns: 1fr;
    }

    .packages-intro h1 {
        font-size: 2.5rem;
    }
}