* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #eef6ea;
    color: #1e1e1e;
}

.container {
    width: 92%;
    max-width: 1400px;
    margin: 30px auto;
}

.navbar {
    width: 92%;
    max-width: 1400px;
    margin: 30px auto 0;
    background: #fff;
    border-radius: 24px;
    padding: 20px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 30px;
    font-weight: 800;
    color: #2db24a;
}

.logo img {
    width: 52px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: #6c6c6c;
    font-weight: 600;
    transition: 0.3s;
}

nav ul li a.active,
nav ul li a:hover {
    color: #2db24a;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    text-decoration: none;
    border-radius: 14px;
    padding: 14px 24px;
    font-weight: 900;
    transition: 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #39b54a;
    color: white;
}

.btn-primary:hover {
    background: #2d963c;
}

.btn-outline {
    border: 2px solid #d9ead7;
    color: #2db24a;
    background: white;
}

.btn-light {
    background: #fff;
    color: #1e1e1e;
    border: 1px solid #ddd;
}

.large {
    padding: 16px 28px;
}

.hero {
    margin-top: 25px;
    background: linear-gradient(135deg, #f5fff2, #dff4df);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: #39b54a;
}

.hero-content p {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 35px;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.feature-box {
    background: white;
    padding: 18px;
    border-radius: 16px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.hero-image img {
    width: 100%;

}

.servers-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.servers-list,
.pricing-box,
.stats-section {
    background: #f7fff4;
    border-radius: 28px;
    padding: 30px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.server-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.server-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    padding: 18px;
}

.card-content h3 {
    margin-bottom: 10px;
}

.meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}

.pricing-box h2 {
    font-size: 52px;
    color: #2db24a;
}

.pricing-box h2 span {
    font-size: 22px;
    color: #666;
}

.pricing-box ul {
    list-style: none;
    margin: 25px 0;
}

.pricing-box ul li {
    margin-bottom: 14px;
    color: #444;
}

.full {
    width: 100%;
    text-align: center;
}

.stats-section {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-box {
    background: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
}

.stat-box h3 {
    font-size: 32px;
    color: #2db24a;
    margin-bottom: 10px;
}

@media (max-width: 1200px) {
    .hero,
    .servers-section,
    .stats-section,
    .cards-grid,
    .features-row {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 48px;
    }
}
.offers-page {
    padding-bottom: 40px;
}

.offers-hero {
    margin-top: 25px;
    background: linear-gradient(135deg, #f5fff2, #dff4df);
    border-radius: 30px;
    padding: 45px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: #e4f7de;
    color: #2f9f44;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.offers-hero h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.offers-hero p {
    color: #5f6a61;
    font-size: 18px;
    line-height: 1.7;
    max-width: 800px;
}

.offers-hero-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.offers-hero-card p {
    font-size: 15px;
    margin-bottom: 8px;
}

.offers-hero-card h2 {
    font-size: 50px;
    color: #2db24a;
    margin-bottom: 8px;
}

.offers-hero-card h2 span {
    font-size: 20px;
    color: #666;
}

.offers-hero-card small {
    color: #6b6b6b;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.pricing-card {
    position: relative;
    background: #ffffff;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #edf3eb;
}

.pricing-card.featured {
    border: 2px solid #39b54a;
    transform: translateY(-6px);
}

.popular-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #39b54a;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 999px;
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 14px;
}

.pricing-card .price {
    font-size: 46px;
    font-weight: 800;
    color: #1f2b21;
    margin-bottom: 22px;
}

.pricing-card .price span {
    font-size: 18px;
    font-weight: 600;
    color: #6f6f6f;
}

.specs {
    display: grid;
    gap: 12px;
    margin-bottom: 25px;
}

.spec-item {
    background: #f6fbf4;
    border: 1px solid #e7f0e3;
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 600;
    color: #334236;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-card ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    color: #4f5a51;
}

.pricing-card ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: #39b54a;
    font-weight: 800;
}

.compare-section,
.faq-section {
    margin-top: 30px;
    background: #f7fff4;
    border-radius: 28px;
    padding: 30px;
}

.section-title {
    margin-bottom: 22px;
}

.section-title h2 {
    font-size: 34px;
    line-height: 1.15;
}

.compare-table-wrapper {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.compare-table th,
.compare-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #edf2ea;
    text-align: left;
}

.compare-table th {
    background: #eef9ea;
    color: #27402c;
    font-size: 15px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-card {
    background: white;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.faq-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.faq-card p {
    color: #5f6a61;
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .offers-hero,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .offers-hero h1 {
        font-size: 38px;
    }
}
.offer-image {
    width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

.features-page {
    padding-top: 40px;
}

.features-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.features-hero h1 {
    font-size: 58px;
    line-height: 1.1;
    margin: 20px 0;
}

.features-hero p {
    font-size: 18px;
    color: #5f6a61;
    line-height: 1.8;
}

.features-hero-image img {
    width: 100%;
    max-width: 420px;
    display: block;
    margin: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.feature-card {
    background: #f7fff4;
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-card img {
    width: 100%;

    object-fit: contain;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.feature-card p {
    color: #5f6a61;
    line-height: 1.7;
}

.big-feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #f7fff4;
    padding: 40px;
    border-radius: 32px;
}

.big-feature-image img {
    width: 100%;
    border-radius: 24px;
}

.big-feature-content h2 {
    font-size: 42px;
    margin: 20px 0;
}

.big-feature-content p {
    color: #5f6a61;
    line-height: 1.8;
    margin-bottom: 20px;
}

.big-feature-content ul {
    list-style: none;
    padding: 0;
}

.big-feature-content li {
    margin-bottom: 12px;
    font-size: 16px;
}
.servers-page {
    padding-bottom: 40px;
}

.servers-hero {
    margin-top: 25px;
    background: linear-gradient(135deg, #f5fff2, #dff4df);
    border-radius: 30px;
    padding: 45px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    align-items: center;
}

.servers-hero h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.servers-hero p {
    color: #5f6a61;
    font-size: 18px;
    line-height: 1.7;
    max-width: 820px;
}

.servers-hero-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.servers-hero-card p {
    font-size: 15px;
    margin-bottom: 8px;
    color: #6b6b6b;
}

.servers-hero-card h2 {
    font-size: 46px;
    color: #2db24a;
    margin-bottom: 8px;
}

.servers-hero-card small {
    color: #6b6b6b;
}

.servers-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.filter-chip {
    border: none;
    background: #fff;
    color: #47604b;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: 0.25s ease;
}

.filter-chip:hover,
.filter-chip.active {
    background: #39b54a;
    color: #fff;
}

.servers-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.server-page-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #edf3eb;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.server-page-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

.server-image-wrap {
    position: relative;
}

.server-image-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.server-status {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #39b54a;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 999px;
}

.server-page-content {
    padding: 24px;
}

.server-top-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.server-top-meta h3 {
    font-size: 26px;
    margin: 0;
}

.server-category {
    background: #eef9ea;
    color: #2f9f44;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.server-meta-line {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: #6a756c;
    font-size: 14px;
    margin-bottom: 14px;
}

.server-page-content p {
    color: #5f6a61;
    line-height: 1.7;
    margin-bottom: 22px;
}

.server-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .servers-hero,
    .servers-grid-page {
        grid-template-columns: 1fr;
    }

    .servers-hero h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .server-top-meta,
    .server-meta-line {
        flex-direction: column;
        align-items: flex-start;
    }

    .server-actions {
        flex-direction: column;
    }

    .server-actions .btn {
        width: 100%;
        text-align: center;
    }
}