@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
    --bg: #06101c;
    --bg-soft: #0b1828;
    --surface: rgba(9, 22, 37, 0.86);
    --surface-strong: rgba(5, 12, 22, 0.96);
    --surface-light: rgba(255, 255, 255, 0.055);
    --line: rgba(148, 184, 214, 0.18);
    --text: #edf7ff;
    --muted: #95adc7;
    --brand-primary: #00d9ff;
    --brand-secondary: #42ffb3;
    --brand-violet: #7e5eff;
    --shadow: 0 18px 44px rgba(1, 7, 18, 0.34);
    --radius-xl: 18px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        linear-gradient(180deg, #05101d 0, #081725 46%, #0a1724 100%);
    color: var(--text);
    font: 15px/1.55 "Outfit", "Segoe UI", sans-serif;
}


a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.site-shell {
    position: relative;
    overflow: hidden;
}


.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(4, 13, 24, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    min-height: 72px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-media {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
}

.brand-logo {
    max-height: 42px;
    object-fit: contain;
}

.brand-logo-compact {
    display: none;
    max-height: 42px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #041321;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
}

.brand-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.brand-copy strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 17px;
}

.brand-copy small {
    color: var(--muted);
    font-size: 12px;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.site-nav-link,
.header-link,
.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border-radius: 12px;
    color: var(--muted);
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav-link:hover,
.site-nav-link.is-active,
.header-link:hover,
.footer-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.site-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    font-size: 12px;
    color: var(--brand-primary);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    font: inherit;
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.header-cta,
.button-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #041321;
    box-shadow: 0 10px 24px rgba(0, 217, 255, 0.18);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.button-ghost {
    background: rgba(126, 94, 255, 0.12);
    border-color: rgba(126, 94, 255, 0.24);
    color: #efe6ff;
}

.button:hover,
.header-cta:hover {
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
}

.hero-section {
    position: relative;
}

.hero-slider-full {
    position: relative;
    min-height: 560px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(2, 8, 18, 0.9) 0%, rgba(2, 8, 18, 0.54) 48%, rgba(2, 8, 18, 0.84) 100%),
        linear-gradient(180deg, rgba(0, 217, 255, 0.04), rgba(66, 255, 179, 0.1)),
        var(--surface-strong);
    background-size: cover;
    background-position: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(1, 6, 15, 0.28) 0%, rgba(1, 6, 15, 0.76) 100%),
        linear-gradient(90deg, rgba(1, 6, 15, 0.72) 0%, rgba(1, 6, 15, 0.22) 55%, rgba(1, 6, 15, 0.6) 100%);
}

.hero-slide-shell {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 560px;
    padding: 84px 0 64px;
}

.hero-slide-content {
    width: min(660px, 100%);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 10px;
    background: rgba(0, 217, 255, 0.12);
    color: var(--brand-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-slide-content h1,
.hero-slide-content h2,
.section-head h1,
.section-head h2,
.detail-card h1 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.02;
}

.hero-slide-content h1 {
    font-size: clamp(36px, 5vw, 64px);
}

.hero-slide-content p,
.section-head p,
.plan-card p,
.server-card p,
.benefit-card p,
.faq-item div,
.detail-card p,
.footer-copy p {
    color: var(--muted);
}

.hero-slide-content p {
    margin: 0;
    max-width: 640px;
    font-size: 17px;
    color: #deefff;
}

.hero-actions,
.plan-actions,
.server-actions,
.detail-actions,
.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions {
    margin-top: 10px;
}

.hero-actions .button {
    min-width: 150px;
}

.hero-dots-full {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 2;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.hero-dot.is-active {
    background: var(--brand-secondary);
}

.section {
    position: relative;
    padding: 30px 0;
}

.quick-nav-section {
    position: sticky;
    top: 73px;
    z-index: 30;
    padding: 10px 0;
    background: rgba(5, 15, 27, 0.82);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
}

.quick-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.quick-nav a {
    flex: 0 0 auto;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: #dbeeff;
    font-size: 13px;
    font-weight: 700;
}

.section-top {
    padding-top: 72px;
}

.section-head {
    margin-bottom: 18px;
    display: grid;
    gap: 10px;
}

.section-head h1 {
    font-size: clamp(34px, 5vw, 56px);
}

.section-head h2 {
    font-size: clamp(26px, 3.4vw, 38px);
}

.section-head p {
    margin: 0;
    max-width: 760px;
    font-size: 15px;
}

.card-grid {
    display: grid;
    gap: 14px;
}

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

.card-grid-plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

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

.card-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.glass-card {
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.plan-card,
.server-card,
.app-store-card,
.detail-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plan-card {
    padding: 18px;
    gap: 10px;
}

.plan-card.is-featured {
    border-color: rgba(66, 255, 179, 0.34);
    box-shadow: 0 28px 70px rgba(66, 255, 179, 0.1);
}

.plan-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.pill,
.plan-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.05);
    color: #d8edff;
    font-size: 12px;
    font-weight: 600;
}

.plan-badge {
    background: rgba(66, 255, 179, 0.14);
    color: var(--brand-secondary);
}

.plan-card h3,
.server-card h3,
.benefit-card h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
}

.plan-card h3 {
    font-size: 20px;
    line-height: 1.08;
}

.plan-price {
    display: block;
    font-size: 28px;
    line-height: 1;
    color: #fff;
}

.feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #dcebff;
    font-size: 14px;
    line-height: 1.5;
}

.feature-list li {
    position: relative;
    padding-left: 18px;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--brand-secondary);
}

.feature-list li + li {
    margin-top: 4px;
}

.plan-actions,
.server-actions {
    margin-top: auto;
    padding-top: 6px;
}

.plan-actions {
    gap: 10px;
}

.plan-card .button {
    min-height: 46px;
    padding: 0 14px;
    font-size: 14px;
}

.linked-group {
    display: grid;
    gap: 10px;
}

.linked-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.linked-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.plan-card .linked-group {
    gap: 8px;
}

.plan-card .linked-logos {
    gap: 8px;
}

.logo-chip {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.plan-card .logo-chip {
    width: 46px;
    height: 46px;
    border-radius: 14px;
}

.logo-chip img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.plan-card .logo-chip img {
    padding: 8px;
}

.app-inline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.app-inline-card {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #def0ff;
}

.plan-card .app-inline-list {
    gap: 8px;
}

.plan-card .app-inline-card {
    gap: 8px;
    padding: 8px 10px;
    border-radius: 14px;
    font-size: 13px;
}

.app-inline-card img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 10px;
}

.plan-card .app-inline-card img {
    width: 26px;
    height: 26px;
}

.app-store-card {
    min-height: 100%;
}

.app-store-media {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: #dff7ff;
    font-weight: 800;
}

.app-store-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.app-store-card .button {
    margin-top: auto;
}

.postpaid-box {
    margin-top: 8px;
}

.postpaid-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.postpaid-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    font-size: 13px;
}

.server-cover {
    margin: -18px -18px 0;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.server-cover img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.server-card-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.server-logo {
    max-width: 96px;
    max-height: 48px;
    object-fit: contain;
}

.server-meta,
.server-detail-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.server-meta div,
.server-detail-list div {
    display: grid;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.server-meta dt,
.server-detail-list dt {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.server-meta dd,
.server-detail-list dd {
    margin: 0;
    font-weight: 600;
}

.benefit-card {
    min-height: 100%;
}

.benefit-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.18), rgba(66, 255, 179, 0.18));
    color: var(--brand-primary);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    padding: 15px 18px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
}

.faq-item div {
    margin-top: 12px;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 22px;
}

.detail-media img {
    width: 100%;
    border-radius: 20px;
}

.detail-top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer {
    padding: 36px 0 48px;
}

.footer-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy p {
    margin: 8px 0 0;
    max-width: 680px;
}

.floating-whatsapp {
    position: fixed;
    z-index: 50;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 18px 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--whatsapp-primary), var(--whatsapp-secondary));
    color: #052033;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.32);
    font-weight: 800;
}

.floating-whatsapp-left {
    left: 22px;
}

.floating-whatsapp-right {
    right: 22px;
}

.floating-whatsapp span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
}

.mobile-cta-bar {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 55;
    display: none;
    gap: 10px;
    padding: 12px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(3, 17, 30, 0.88);
    backdrop-filter: blur(20px);
    box-shadow: 0 22px 44px rgba(2, 6, 23, 0.34);
}

.mobile-cta {
    flex: 1 1 0;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.mobile-cta-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #041321;
}

.mobile-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.mobile-cta-ghost {
    background: rgba(126, 94, 255, 0.16);
    color: #efe6ff;
}

.tool-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.checkout-section {
    padding: 128px 0 72px;
}

.checkout-shell {
    max-width: 1120px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.checkout-summary {
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.checkout-summary h1 {
    margin: 8px 0 14px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.02;
}

.checkout-summary strong {
    display: block;
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: 30px;
}

.checkout-summary p {
    color: var(--muted);
}

.checkout-summary ul {
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.checkout-summary li {
    color: #d9eaff;
}

.checkout-summary li::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 10px;
    border-radius: 999px;
    background: var(--secondary);
}

.checkout-card {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 28px;
}

.checkout-form-head h2 {
    margin: 0 0 6px;
}

.checkout-form-head p {
    margin: 0;
    color: var(--muted);
}

.checkout-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.checkout-grid .field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.checkout-grid .field-full {
    grid-column: 1 / -1;
}

.checkout-grid label {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.checkout-grid input {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font: inherit;
}

.checkout-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.checkout-alert-error {
    border-color: rgba(255, 127, 156, 0.35);
    color: #ffd9e2;
}

.checkout-alert-success {
    border-color: rgba(66, 255, 179, 0.35);
    color: #c8ffe8;
}

.checkout-result {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.checkout-result div {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
}

.checkout-result dt {
    color: var(--muted);
    font-size: 13px;
}

.checkout-result dd {
    margin: 4px 0 0;
    color: var(--text);
    font-weight: 800;
    overflow-wrap: anywhere;
}


@media (max-width: 1080px) {
    .card-grid-plans,
    .card-grid-3,
    .card-grid-4,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .header-row {
        grid-template-columns: auto auto;
        grid-template-areas:
            "brand toggle"
            "nav nav"
            "actions actions";
    }

    .brand {
        grid-area: brand;
    }

    .menu-toggle {
        grid-area: toggle;
        justify-self: end;
        display: block;
    }

    .site-nav {
        grid-area: nav;
        display: none;
        align-items: stretch;
        flex-direction: column;
        padding: 12px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.04);
    }

    .site-nav.is-open {
        display: flex;
    }

    .header-actions {
        grid-area: actions;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .hero-slide-shell {
        padding-top: 110px;
    }
}

@media (min-width: 761px) and (max-width: 1120px) {
    .card-grid-plans {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .card-grid-plans,
    .card-grid-2 {
        grid-template-columns: 1fr;
    }

    .glass-card {
        padding: 18px;
    }

    .checkout-grid,
    .checkout-result {
        grid-template-columns: 1fr;
    }

    .hero-slider-full,
    .hero-slide-shell {
        min-height: 65vh;
    }

    .hero-slide-shell {
        padding: 96px 0 56px;
    }

    .hero-slide-content h1 {
        font-size: 34px;
    }

    .quick-nav-section {
        top: 73px;
    }

    .quick-nav a {
        padding: 7px 10px;
        font-size: 12px;
    }

    .brand-logo-full {
        display: none;
    }

    .brand-logo-compact {
        display: block;
    }

    .footer-row {
        flex-direction: column;
    }

    .site-footer {
        padding-bottom: 132px;
    }

    .floating-whatsapp {
        display: none;
    }

    .mobile-cta-bar {
        display: flex;
    }
}
