@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --bg-color: #05070a;
    --text-color: #e0e0e0;
    --accent-primary: #00f2ff;
    --accent-secondary: #7000ff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    --gradient-1: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 5rem;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: #808080;
}

.text-gray {
    color: #808080;
}

.margin-b-1 {
    margin-bottom: 1rem;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Navigation */
.nav-container {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-primary);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-color);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #10141d 0%, var(--bg-color) 70%);
}

.hero-section h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #a0a0a0;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Product Cards */
.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.product-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.product-card.reverse .product-info h3 {
    color: var(--accent-secondary);
}

.product-info p {
    color: #a0a0a0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.product-info ul {
    list-style: none;
    margin-bottom: 2.5rem;
}

.product-info li {
    margin-bottom: 1rem;
}

.product-info li span {
    color: var(--accent-primary);
    margin-right: 10px;
}

.product-card.reverse .product-info li span {
    color: var(--accent-secondary);
}

.product-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-card.reverse {
    direction: rtl;
}

.product-card.reverse .product-info,
.product-card.reverse .product-image {
    direction: ltr;
}

/* Advantages Section */
.advantages-section {
    background: rgba(112, 0, 255, 0.03);
}

.card-padding {
    padding: 3rem;
}

.icon-m {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.pricing-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.border-gray {
    border-top: 4px solid #808080;
}

.border-primary {
    border-top: 4px solid var(--accent-primary);
}

.border-secondary {
    border-top: 4px solid var(--accent-secondary);
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.price-unit {
    font-size: 1rem;
    color: #808080;
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    color: #a0a0a0;
}

.plan-features li {
    margin-bottom: 0.8rem;
}

.plan-features li.highlight {
    color: #fff;
    font-weight: 600;
}

.badge {
    background: var(--accent-primary);
    color: #000;
    display: inline-block;
    padding: 0.2rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.featured-card {
    transform: scale(1.05);
    background: rgba(0, 242, 255, 0.05);
}

.btn-full {
    width: 100%;
    text-align: center;
    border-radius: 10px;
}

.secondary-btn {
    border-color: var(--accent-secondary);
    color: var(--accent-secondary);
}

.secondary-btn:hover {
    background: var(--accent-secondary);
    color: #fff;
}

/* About Section */
.about-section {
    background: #080a0f;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.2rem;
    color: #a0a0a0;
}

.about-text p {
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 0.9rem;
    color: #606060;
}

.about-logo-card {
    padding: 3rem;
    text-align: center;
}

.logo-text-large {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-primary);
    opacity: 0.2;
}

.logo-subtext {
    margin-top: -2rem;
    font-weight: 600;
}

/* Contact Section */
.contact-cta {
    padding: 5rem;
    text-align: center;
}

.cta-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    color: #a0a0a0;
    margin-bottom: 4rem;
    font-size: 1.2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.contact-label {
    font-size: 0.9rem;
    color: #606060;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-logo {
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.copyright {
    color: #606060;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 242, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 242, 255, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
}

.btn-outline:hover {
    background: var(--accent-primary);
    color: var(--bg-color);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */

/* Tablet and smaller laptops */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .product-card {
        gap: 2.5rem;
        padding: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        padding: 2.5rem;
    }

    .featured-card {
        transform: scale(1);
    }

    .about-grid {
        gap: 3rem;
    }
}

/* Tablet portrait and mobile landscape */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    section {
        padding: 4rem 0;
    }

    .nav-container {
        width: 95%;
        padding: 0.75rem 1rem;
        top: 1rem;
    }

    .nav-container .logo {
        font-size: 1.25rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(5, 7, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--glass-border);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.75rem 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 300px;
    }

    .product-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .product-card.reverse .product-info {
        order: 1;
    }

    .product-card .product-image {
        order: 2;
    }

    .product-card.reverse .product-image {
        order: 2;
    }

    .product-info h3 {
        font-size: 2rem;
    }

    .product-info p {
        font-size: 1rem;
    }

    .product-info ul {
        display: inline-block;
        text-align: left;
        margin-bottom: 2rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-padding {
        padding: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-text {
        text-align: center;
        font-size: 1.05rem;
    }

    .logo-text-large {
        font-size: 3rem;
    }

    .contact-cta {
        padding: 3rem 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }

    .text-left {
        text-align: center;
    }
}

/* Mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .nav-container {
        width: calc(100% - 2rem);
        padding: 0.6rem 1rem;
        top: 0.75rem;
    }

    .nav-container .logo {
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

    .hero-section {
        min-height: 90vh;
        padding: 0 0.5rem;
    }

    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .hero-btns {
        gap: 0.85rem;
        padding: 0;
    }

    .hero-btns .btn {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: none;
    }

    .section-title {
        font-size: 1.85rem;
        margin-bottom: 2.5rem;
        line-height: 1.3;
    }

    .product-card {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .product-info h3 {
        font-size: 1.65rem;
        margin-bottom: 1rem;
    }

    .product-info p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .product-info ul {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .product-info li {
        margin-bottom: 0.75rem;
    }

    .btn {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }

    .card-padding {
        padding: 1.75rem 1.25rem;
    }

    .icon-m {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .plan-name {
        font-size: 1.35rem;
    }

    .plan-price {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .plan-features {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.15rem 0.85rem;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .stats-grid {
        gap: 1.25rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .logo-text-large {
        font-size: 2.5rem;
    }

    .logo-subtext {
        margin-top: -1.5rem;
        font-size: 0.9rem;
    }

    .contact-cta {
        padding: 2.5rem 1.25rem;
    }

    .cta-title {
        font-size: 1.65rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }

    .contact-label {
        font-size: 0.85rem;
    }

    .contact-value {
        font-size: 1.25rem;
        word-break: break-all;
    }

    .footer {
        padding: 3rem 0;
    }

    .footer-logo {
        font-size: 1.1rem;
    }

    .copyright {
        font-size: 0.85rem;
    }
}