/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f0f13;
    color: #e0e0e0;
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    color: #b0b0b0;
}

strong {
    color: #00ff88;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    margin: 10px 5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 114, 255, 0.6);
}

.btn-secondary {
    background: linear-gradient(45deg, #11998e, #38ef7d);
    color: white;
    box-shadow: 0 4px 15px rgba(56, 239, 125, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 239, 125, 0.6);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    font-size: 1.2rem;
    padding: 15px 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    width: 100%;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-submit {
    background-color: #00ff88;
    color: #0f0f13;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background-color: #00cc6a;
}

/* Header */
header {
    background-color: rgba(15, 15, 19, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #2a2a2a;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo h1 {
    font-size: 1.8rem;
    background: -webkit-linear-gradient(#00ff88, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #00ff88;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0;
    background: radial-gradient(circle at center, #1a1a2e 0%, #0f0f13 100%);
}

.date-badge {
    background-color: #2a2a2a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #00ff88;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
}

/* Intro Test */
.intro-test {
    background-color: #16161c;
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.intro-test h3 {
    color: #00ff88;
    margin-bottom: 25px;
}

.highlight {
    font-size: 1.1rem;
    color: #00c6ff;
    font-weight: 600;
}

/* Apps Section */
.apps-section {
    text-align: center;
    padding: 60px 0;
}

.app-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.app-tag {
    background-color: #2a2a2a;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    border: 1px solid #3a3a3a;
    transition: 0.3s;
}

.app-tag:hover {
    border-color: #00ff88;
    color: #00ff88;
}

/* SEO List Section */
.seo-list-section {
    background-color: #16161c;
    padding: 50px 0;
}

.seo-list-section h4 {
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    text-align: center;
}

.device-grid li {
    background-color: #1f1f26;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #b0b0b0;
    transition: 0.3s;
}

.device-grid li:hover {
    background-color: #2a2a2a;
    color: #fff;
}

/* How To */
.how-to {
    padding: 60px 0;
}

/* Quality Section */
.quality-section {
    background-color: #16161c;
    padding: 80px 0;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.cta-banner {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 50px;
}

.cta-banner p {
    color: white;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    background-color: #1f1f26;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 20px;
}

/* Plans Section */
.pricing-section {
    padding: 80px 0;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background-color: #16161c;
    border: 1px solid #2a2a2a;
    border-radius: 15px;
    padding: 40px 30px;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.pricing-card.recommended {
    border-color: #00c6ff;
    transform: scale(1.05);
    z-index: 10;
    background-color: #1a1a2e;
}

.ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00c6ff;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.card-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 20px;
}

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

.cents {
    font-size: 1.2rem;
    vertical-align: top;
}

.period {
    color: #b0b0b0;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.features {
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features li {
    margin-bottom: 12px;
    color: #d0d0d0;
    font-size: 0.95rem;
}

.features i {
    color: #00ff88;
    margin-right: 10px;
}

.btn-plan {
    background-color: transparent;
    border: 2px solid #00ff88;
    color: #00ff88;
    width: 100%;
    margin: 0;
}

.btn-plan:hover {
    background-color: #00ff88;
    color: #0f0f13;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16161c 0%, #0f0f13 100%);
}

.form-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.form-content {
    flex: 1;
    min-width: 300px;
}

.form-box {
    flex: 1;
    min-width: 300px;
    background-color: #1f1f26;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #e0e0e0;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    color: white;
    font-family: inherit;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #00ff88;
}

/* SEO Content */
.seo-content {
    padding: 60px 0;
    background-color: #16161c;
}

.seo-content article {
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.benefit-card {
    background-color: #1f1f26;
    padding: 25px;
    border-left: 3px solid #00ff88;
}

.steps {
    list-style: none;
}

.steps li {
    background-color: #1f1f26;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
}

/* Reseller Section */
.reseller-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f1f26 0%, #0f0f13 100%);
}

.reseller-content {
    text-align: center;
    margin-bottom: 50px;
}

.reseller-content h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
}

.reseller-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.server-card {
    background: #16161c;
    border: 1px solid #2a2a2a;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}

.server-card:hover {
    border-color: #00ff88;
    transform: translateY(-5px);
}

.server-card h4 {
    color: #00c6ff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.credit-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
    background: #16161c;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #2a2a2a;
}

.credit-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.credit-table th, .credit-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #2a2a2a;
    color: #e0e0e0;
}

.credit-table th {
    background-color: #1f1f26;
    color: #00ff88;
    font-weight: 700;
    text-transform: uppercase;
}

.credit-table tr:last-child td {
    border-bottom: none;
}

.credit-table tr:hover {
    background-color: #1f1f26;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #0f0f13;
}

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

.faq-item {
    background-color: #1f1f26;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background-color: #1f1f26;
    color: #ffffff;
    padding: 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover, .faq-question.active {
    background-color: #2a2a2a;
}

.faq-question::after {
    content: '\002B'; /* Plus sign */
    color: #00ff88;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 1.5rem;
}

.faq-question.active::after {
    content: "\2212"; /* Minus sign */
}

.faq-answer {
    padding: 0 20px;
    background-color: #1f1f26;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-answer p {
    margin-bottom: 15px;
    color: #b0b0b0;
}

.faq-answer.show {
    padding: 20px;
    max-height: 1000px; /* Arbitrary large value */
}

/* Footer */
footer {
    background-color: #0a0a0d;
    padding: 60px 0 20px;
    border-top: 1px solid #2a2a2a;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: #00ff88;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1a1a1e;
    padding-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* In a real scenario, implement a JS toggle */
    }
    
    .mobile-menu-icon {
        display: block;
    }

    .hero h2 {
        font-size: 2rem;
    }
    
    .pricing-card.recommended {
        transform: scale(1);
    }
}
