/* Global Styles */
:root {
    --bg-color: #000000;
    --bg-secondary: #111111;
    --text-primary: #f5f5f7;
    --text-secondary: #86868b;
    --accent-color: #0071e3;
    --accent-hover: #0077ed;
    --card-bg: #1c1c1e;
    --border-color: #333333;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3rem;
    /* Mobile first default, scaled up in media queries */
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 980px;
    /* Pill shape */
    font-weight: 500;
    font-size: 17px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: scale(1.02);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: white;
}

.btn-white {
    background-color: white;
    color: black;
}

.btn-white:hover {
    background-color: #f5f5f7;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    height: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-weight: 600;
    font-size: 1.2rem;
    color: white;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 12px;
    color: #e8e8ed;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    background-color: black;
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid #333;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 18px;
    color: white;
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    overflow: hidden;
}

.hero-tag {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
}

.hero-desc {
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
}

.hero-offer-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Hero Image Placeholder - CSS Mac */
.hero-image-placeholder {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    perspective: 1000px;
}

.macbook-frame {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    transform: rotateX(10deg);
}

.screen {
    background: #000;
    border-radius: 20px 20px 0 0;
    padding: 15px;
    border: 1px solid #333;
    box-shadow: 0 0 50px rgba(0, 113, 227, 0.2);
    position: relative;
    aspect-ratio: 16/10;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.app-window {
    width: 90%;
    height: 85%;
    background: rgba(30, 30, 30, 0.9);
    border-radius: 10px;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar {
    width: 25%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(40, 40, 40, 0.5);
    border-radius: 10px 0 0 10px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.server-status,
.ping-status {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.server-label,
.ping-label {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 4px;
    font-weight: 600;
}

.server-value {
    font-size: 13px;
    color: white;
    font-weight: 500;
    margin-bottom: 5px;
}

.ping-value {
    font-size: 24px;
    font-weight: 700;
    color: #30d158;
}

.ping-chart {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
    margin-top: 5px;
}

.bar {
    width: 4px;
    background-color: #30d158;
    border-radius: 2px;
    opacity: 0.7;
    animation: barBounce 1s infinite alternate;
}

.bar:nth-child(1) {
    animation-delay: 0s;
}

.bar:nth-child(2) {
    animation-delay: 0.2s;
}

.bar:nth-child(3) {
    animation-delay: 0.4s;
}

.bar:nth-child(4) {
    animation-delay: 0.1s;
}

@keyframes barBounce {
    0% {
        height: 30%;
        opacity: 0.5;
    }

    100% {
        height: 100%;
        opacity: 1;
    }
}

.main-view {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.shield-icon {
    font-size: 60px;
    filter: drop-shadow(0 0 20px var(--accent-color));
}

.status-text {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 18px;
}

/* Active Users Badge */
.active-users-badge {
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.online-indicator {
    width: 8px;
    height: 8px;
    background-color: #30d158;
    border-radius: 50%;
    box-shadow: 0 0 10px #30d158;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

/* Base */
.base {
    height: 15px;
    background: #333;
    border-radius: 0 0 20px 20px;
    width: 120%;
    margin-left: -10%;
    margin-top: -2px;
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, #444, #222);
}

/* Advantages - Bento Grid */
.advantages {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.grid-bento {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    /* Symmetrical padding */
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    background-color: #0071e3;
    /* Blue hover effect */
    border-color: #0071e3;
    box-shadow: 0 10px 30px rgba(0, 113, 227, 0.3);
}

.card:hover h3,
.card:hover p {
    color: white;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

/* Instructions */
.instructions {
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.step {
    text-align: center;
}

.step-num {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.step h3 {
    margin-bottom: 10px;
}

.center-btn {
    text-align: center;
}

/* Promo */
.promo {
    background: linear-gradient(90deg, #00C6FF 0%, #0072FF 100%);
    padding: 60px 0;
    text-align: center;
}

.promo-text h2 {
    color: white;
    margin-bottom: 15px;
}

.promo-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.plan-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.plan-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    z-index: 2;
}

.best-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.plan-header {
    margin-bottom: 30px;
    text-align: center;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 10px 0;
}

.period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.total-price {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.savings-tag {
    color: #30d158;
    font-weight: 600;
    margin-top: 5px;
}

.plan-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #e8e8ed;
}

.plan-features li::before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Reviews */
.reviews {
    padding: 100px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.review-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stars {
    margin-bottom: 15px;
    font-size: 14px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 600;
    color: white;
}

/* Guarantees */
.guarantees {
    padding: 60px 0;
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.guarantee-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.guarantee-icon {
    font-size: 40px;
}

.guarantee-info h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    color: var(--accent-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content p {
    padding-bottom: 20px;
}

/* SEO Text */
.seo-text-section {
    padding: 60px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.seo-content h2,
.seo-content h3 {
    color: #e8e8ed;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
}

.seo-content p,
.seo-content ul {
    margin-bottom: 15px;
}

.seo-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid #333;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

/* Media Queries */
@media (min-width: 768px) {
    h1 {
        font-size: 4.5rem;
    }

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

    /* Make all cards uniform height/size for 'straightness' */
    .card {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    /* Remove bento spans to make it uneven */
    .card-large,
    .card-wide {
        grid-column: auto;
        grid-row: auto;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nav-links {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .grid-bento {
        grid-template-columns: repeat(3, 1fr);
    }
}