/* Minton Purple Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8f6fc;
    color: #1e1b2b;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* header */
.header {
    padding: 18px 0;
    background: white;
    box-shadow: 0 4px 20px rgba(106, 90, 205, 0.06);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.92);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    font-weight: 700;
    font-size: 1.7rem;
    letter-spacing: -0.4px;
    color: #6a5acd;
    display: flex;
    align-items: center;
    gap: 6px;
}
.logo span {
    background: #6a5acd;
    color: white;
    font-size: 0.9rem;
    padding: 2px 10px;
    border-radius: 40px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 22px;
}
.nav-links a {
    text-decoration: none;
    color: #2d2a3f;
    font-weight: 500;
    font-size: 0.98rem;
    transition: 0.2s;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}
.nav-links a:hover {
    color: #6a5acd;
    border-bottom-color: #6a5acd;
}
.nav-links .btn-outline {
    border: 1.5px solid #6a5acd;
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: 600;
    color: #6a5acd;
    background: transparent;
    transition: 0.2s;
}
.nav-links .btn-outline:hover {
    background: #6a5acd;
    color: white;
    border-color: #6a5acd;
}
.nav-links .btn-solid {
    background: #6a5acd;
    color: white;
    padding: 8px 22px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.2s;
}
.nav-links .btn-solid:hover {
    background: #5a4ab5;
    transform: scale(0.97);
}

/* hero */
.hero {
    padding: 50px 0 30px;
}
.hero-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-text {
    flex: 1 1 380px;
}
.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #1e1b2b;
}
.hero-text h1 span {
    color: #6a5acd;
}
.hero-text p {
    font-size: 1.1rem;
    color: #3d3a4f;
    margin: 20px 0 28px;
    max-width: 540px;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.btn-primary {
    background: #6a5acd;
    color: white;
    padding: 14px 40px;
    border-radius: 60px;
    font-weight: 600;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
    display: inline-block;
}
.btn-primary:hover {
    background: #5a4ab5;
    box-shadow: 0 8px 20px rgba(106, 90, 205, 0.25);
}
.btn-secondary {
    background: transparent;
    color: #2d2a3f;
    border: 1.5px solid #d5cef0;
    padding: 14px 34px;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}
.btn-secondary:hover {
    border-color: #6a5acd;
    background: #f4f1ff;
}

.hero-badge {
    background: #edeaff;
    color: #4a3b8a;
    display: inline-block;
    padding: 6px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* sections */
section {
    padding: 60px 0 40px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}
.section-sub {
    color: #4f4b66;
    max-width: 700px;
    font-size: 1.1rem;
}

/* possibilities */
.poss-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 28px 20px;
    margin-top: 30px;
}
.poss-item {
    background: white;
    padding: 22px 18px;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(106, 90, 205, 0.04);
    border: 1px solid #f0edfa;
    transition: 0.2s;
}
.poss-item:hover {
    border-color: #c7bcf0;
    transform: translateY(-4px);
}
.poss-item h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #1e1b2b;
}
.poss-item p {
    font-size: 0.95rem;
    color: #4f4b66;
}
.poss-icon {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

/* tariffs table */
.tariff-table-wrap {
    overflow-x: auto;
    margin: 30px 0 10px;
    border-radius: 24px;
    background: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.02);
}
.tariff-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    font-size: 0.95rem;
}
.tariff-table th {
    background: #f6f3ff;
    padding: 20px 16px;
    font-weight: 600;
    color: #2d2a3f;
    text-align: center;
    border-bottom: 2px solid #e8e2fc;
}
.tariff-table td {
    padding: 16px 14px;
    border-bottom: 1px solid #eeeaf9;
    text-align: center;
    vertical-align: middle;
}
.tariff-table tr:last-child td {
    border-bottom: none;
}
.tariff-table .feature-label {
    text-align: left;
    font-weight: 500;
    color: #2d2a3f;
    padding-left: 20px;
}
.tariff-name {
    font-weight: 700;
    font-size: 1.1rem;
}
.tariff-price {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1e1b2b;
}
.btn-tariff {
    background: #6a5acd;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.15s;
    text-decoration: none;
    display: inline-block;
}
.btn-tariff:hover {
    background: #4f3eb0;
    transform: scale(0.96);
}

/* additional */
.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 30px;
}
.addon-card {
    background: white;
    padding: 24px 20px;
    border-radius: 20px;
    border-left: 6px solid #6a5acd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.addon-card h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.addon-card p {
    color: #4f4b66;
    font-size: 0.95rem;
}
.addon-tag {
    font-size: 0.8rem;
    background: #f0edfa;
    padding: 2px 12px;
    border-radius: 40px;
    display: inline-block;
    margin-top: 8px;
}

/* feedback */
.feedback-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
}
.feedback-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 18px;
    text-decoration: none;
    color: #222;
    background: #fff;
    border-radius: 14px;
    transition: .2s;
}

.feedback-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.messenger-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* footer */
.footer {
    background: #1e1b2b;
    color: #cdc8e6;
    padding: 40px 0 30px;
    margin-top: 30px;
}
.footer a {
    color: #cdc8e6;
    text-decoration: none;
}
.footer a:hover {
    color: white;
}
.footer-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.cta-message {
    margin-top: 32px;
    padding: 24px 28px;
    background: #edeaff;
    border-radius: 40px;
    text-align: center;
    font-size: 1.1rem;
    border: 1px solid #d5cbf5;
}
.cta-message a {
    color: #6a5acd;
    font-weight: 600;
    text-decoration: none;
}
.cta-message a:hover {
    text-decoration: underline;
}

.poss-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* responsive */
@media (max-width: 700px) {
    .header .container {
        flex-direction: column;
        align-items: stretch;
    }
    .nav-links {
        justify-content: center;
        gap: 12px 14px;
    }
    .hero-text h1 {
        font-size: 2.1rem;
    }
    .section-title {
        font-size: 1.9rem;
    }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .tariff-table { font-size: 0.8rem; min-width: 480px; }
    .tariff-table th, .tariff-table td { padding: 12px 8px; }
    .btn-tariff { padding: 6px 14px; font-size: 0.8rem; }
    .feedback-card { padding: 16px 20px; font-size: 1rem; }
}