:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-soft: #eff6ff;

    --dark: #111827;
    --dark-soft: #1f2937;

    --text: #374151;
    --muted: #6b7280;

    --white: #ffffff;
    --light: #f8fafc;
    --border: #e5e7eb;

    --success: #16a34a;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm: 0 5px 20px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 15px 40px rgba(15, 23, 42, 0.08);

    --container: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    color: var(--dark);
    font-size: 16px;
    font-weight: 800;
}

.brand-text small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 19px;
    margin-left: auto;
}

.main-nav a {
    color: #4b5563;
    font-size: 13px;
    font-weight: 600;
    transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-check {
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.header-button {
    padding: 10px 15px;
    border-radius: 9px;
    color: var(--white);
    background: var(--dark);
    font-size: 12px;
    font-weight: 700;
    transition: 0.25s ease;
}

.header-button:hover {
    background: var(--primary);
}

.mobile-toggle {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 7px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    display: block;
    margin: 5px 0;
    background: var(--dark);
    transition: 0.25s ease;
}

.mobile-nav {
    display: none;
}


/* =========================
   HERO
========================= */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 92px 0 100px;
    background:
        radial-gradient(circle at 85% 20%, rgba(37, 99, 235, 0.09), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 80px;
}

.hero-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    margin-bottom: 22px;
    border: 1px solid #dbeafe;
    border-radius: 50px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 11px;
    font-weight: 700;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
}

.hero-content h1 {
    max-width: 690px;
    color: var(--dark);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -2.5px;
    font-weight: 800;
}

.hero-content h1 span {
    display: block;
    color: var(--primary);
}

.hero-description {
    max-width: 610px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 21px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn-primary {
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    color: var(--dark);
    background: var(--white);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-light {
    color: var(--dark);
    background: var(--white);
}

.btn-light:hover {
    transform: translateY(-2px);
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
}

.benefit-icon {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--success);
    background: #dcfce7;
    font-size: 10px;
    font-weight: 800;
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    width: min(100%, 410px);
    padding: 13px;
    border-radius: 28px;
    background: var(--dark);
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.18);
    transform: rotate(1deg);
}

.hero-card-top {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    color: var(--white);
}

.hero-card-top small {
    display: block;
    margin-bottom: 3px;
    color: #9ca3af;
    font-size: 10px;
}

.hero-card-top strong {
    font-size: 17px;
}

.hero-card-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--primary);
    font-size: 11px;
    font-weight: 800;
}

.hero-card-screen {
    padding: 25px;
    border-radius: 20px;
    background: var(--white);
}

.screen-label {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 800;
}

.quick-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.quick-product {
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--dark);
    background: #fff;
    font-size: 10px;
    font-weight: 700;
    transition: 0.25s ease;
}

.quick-product:hover {
    border-color: #bfdbfe;
    background: var(--primary-soft);
    transform: translateY(-3px);
}

.quick-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.pulsa-icon {
    background: #2563eb;
}

.data-icon {
    background: #0891b2;
}

.game-icon {
    background: #7c3aed;
}

.pln-icon {
    background: #ea580c;
}

.wallet-icon {
    background: #059669;
}

.more-icon {
    color: var(--primary);
    background: var(--primary-soft);
}

.screen-button {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding: 0 15px;
    border-radius: 11px;
    color: var(--white);
    background: var(--primary);
    font-size: 11px;
    font-weight: 700;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.floating-card > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 13px;
    font-weight: 800;
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    color: var(--dark);
    font-size: 11px;
}

.floating-card small {
    color: var(--muted);
    font-size: 9px;
}

.floating-card-one {
    top: 80px;
    left: -10px;
}

.floating-card-two {
    right: -15px;
    bottom: 80px;
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 100px 0;
}

.category-section {
    background: var(--white);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
}

.section-heading.centered {
    display: block;
    max-width: 650px;
    margin-inline: auto;
    text-align: center;
}

.section-label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.section-heading h2,
.advantages-content h2,
.wallet-content h2,
.final-cta h2 {
    color: var(--dark);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.section-heading p {
    max-width: 620px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
}

.section-link {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}


/* =========================
   CATEGORY
========================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.category-card {
    position: relative;
    min-height: 150px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: 0.3s ease;
}

.category-card:hover {
    border-color: #bfdbfe;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.category-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 800;
}

.category-pulsa {
    color: #2563eb;
    background: #eff6ff;
}

.category-data {
    color: #0891b2;
    background: #ecfeff;
}

.category-game {
    color: #7c3aed;
    background: #f5f3ff;
}

.category-pln {
    color: #ea580c;
    background: #fff7ed;
}

.category-wallet {
    color: #059669;
    background: #ecfdf5;
}

.category-more {
    color: var(--dark);
    background: #f3f4f6;
}

.category-info {
    padding-right: 20px;
}

.category-info h3 {
    color: var(--dark);
    font-size: 14px;
}

.category-info p {
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.6;
}

.category-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #9ca3af;
    font-size: 14px;
    transition: 0.25s ease;
}

.category-card:hover .category-arrow {
    color: var(--primary);
    transform: translateX(3px);
}


/* =========================
   POPULAR PRODUCTS
========================= */

.popular-section {
    background: var(--light);
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: 0.3s ease;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.product-image {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--white);
    text-align: center;
}

.product-image-pulsa {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.product-image-data {
    background: linear-gradient(135deg, #0891b2, #22d3ee);
}

.product-image-game {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.product-image-pln {
    background: linear-gradient(135deg, #ea580c, #fb923c);
}

.product-image-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.product-image strong {
    font-size: 24px;
}

.product-card-content {
    padding: 20px;
}

.product-category {
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card-content h3 {
    margin-top: 6px;
    color: var(--dark);
    font-size: 15px;
}

.product-card-content p {
    min-height: 60px;
    margin-top: 7px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
}

.product-link span {
    transition: 0.25s ease;
}

.product-link:hover span {
    transform: translateX(4px);
}


/* =========================
   ADVANTAGES
========================= */

.advantages-section {
    background: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    align-items: start;
}

.advantages-content p {
    max-width: 490px;
    margin: 20px 0 28px;
    color: var(--muted);
    font-size: 14px;
}

.advantages-list {
    display: grid;
    gap: 0;
}

.advantage-item {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.advantage-item:first-child {
    padding-top: 0;
}

.advantage-item:last-child {
    border-bottom: 0;
}

.advantage-number {
    color: #cbd5e1;
    font-size: 18px;
    font-weight: 800;
}

.advantage-item h3 {
    color: var(--dark);
    font-size: 15px;
}

.advantage-item p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
}


/* =========================
   ORDER STEPS
========================= */

.order-section {
    background: var(--light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 45px;
}

.step-card {
    position: relative;
    padding: 30px 23px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
}

.step-number {
    position: absolute;
    top: 17px;
    right: 18px;
    color: #dbeafe;
    font-size: 22px;
    font-weight: 800;
}

.step-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 12px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 11px;
    font-weight: 800;
}

.step-card h3 {
    color: var(--dark);
    font-size: 14px;
}

.step-card p {
    margin-top: 7px;
    color: var(--muted);
    font-size: 11px;
}

.order-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 20px;
    padding: 25px 28px;
    border-radius: var(--radius-md);
    color: var(--white);
    background: var(--primary);
}

.order-cta span,
.order-cta strong {
    display: block;
}

.order-cta span {
    margin-bottom: 3px;
    color: #bfdbfe;
    font-size: 10px;
}

.order-cta strong {
    font-size: 14px;
}


/* =========================
   WALLET
========================= */

.wallet-banner {
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
    padding: 50px;
    border-radius: 28px;
    background: #111827;
}

.wallet-content {
    position: relative;
    z-index: 2;
}

.wallet-content h2 {
    max-width: 580px;
    color: var(--white);
}

.wallet-content p {
    max-width: 520px;
    margin: 16px 0 25px;
    color: #9ca3af;
    font-size: 13px;
}

.wallet-visual {
    position: relative;
    min-height: 270px;
}

.wallet-circle {
    position: absolute;
    width: 130px;
    height: 130px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
}

.wallet-circle-one {
    top: 15px;
    right: 100px;
    background: var(--primary);
}

.wallet-circle-two {
    right: 0;
    bottom: 5px;
    background: #059669;
}

.wallet-card-mini {
    position: absolute;
    z-index: 3;
    left: 40px;
    bottom: 50px;
    width: 245px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.wallet-card-mini span {
    display: block;
    margin-bottom: 15px;
    color: #9ca3af;
    font-size: 9px;
}

.wallet-card-mini strong {
    font-size: 17px;
}

.wallet-card-line {
    width: 70px;
    height: 4px;
    margin-top: 20px;
    border-radius: 10px;
    background: var(--primary);
}


/* =========================
   FAQ
========================= */

.faq-preview-section {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
}

.faq-item summary {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
    cursor: pointer;
    list-style: none;
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    color: var(--primary);
    font-size: 18px;
    transition: 0.25s ease;
}

.faq-item[open] summary span {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 20px 20px;
    color: var(--muted);
    font-size: 11px;
}


/* =========================
   FINAL CTA
========================= */

.final-cta {
    padding: 0 0 100px;
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 55px;
    border-radius: 28px;
    background: var(--primary);
}

.final-cta h2 {
    max-width: 600px;
    color: var(--white);
}

.final-cta p {
    margin-top: 12px;
    color: #dbeafe;
    font-size: 13px;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 65px 0 25px;
    color: #9ca3af;
    background: #111827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 55px;
}

.footer-logo .brand-text strong {
    color: var(--white);
}

.footer-brand p {
    max-width: 350px;
    margin-top: 18px;
    font-size: 11px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-column h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 12px;
}

.footer-column a,
.footer-column p {
    font-size: 10px;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 9px;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
}

.footer-bottom-links a {
    font-size: 9px;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* =========================
   PRODUCT CATALOG PAGE
========================= */

.breadcrumb-section {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 10px;
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 700;
}

.catalog-hero {
    padding: 75px 0;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(37, 99, 235, 0.1),
            transparent 32%
        ),
        var(--light);
}

.catalog-hero-inner {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
    gap: 70px;
}

.catalog-hero-content h1 {
    max-width: 700px;
    color: var(--dark);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.catalog-hero-content h1 span {
    display: block;
    color: var(--primary);
}

.catalog-hero-content p {
    max-width: 620px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 14px;
}

.catalog-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.catalog-hero-visual {
    display: flex;
    justify-content: center;
}

.catalog-main-card {
    width: 330px;
    min-height: 360px;
    padding: 22px;
    border-radius: 25px;
    color: var(--white);
    background: var(--dark);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.16);
    transform: rotate(2deg);
}

.catalog-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
}

.catalog-card-header strong {
    color: #93c5fd;
    font-size: 9px;
    letter-spacing: 1px;
}

.catalog-card-body {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.catalog-card-icon {
    width: 95px;
    height: 95px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 28px;
    color: var(--white);
    background: var(--primary);
    font-size: 23px;
    font-weight: 800;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.catalog-card-body strong {
    font-size: 23px;
}

.catalog-card-body small {
    margin-top: 8px;
    color: #9ca3af;
    font-size: 9px;
}


/* Category filter */

.catalog-category-section {
    padding: 35px 0;
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.catalog-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.catalog-filter-title h2 {
    color: var(--dark);
    font-size: 23px;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.category-pill {
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--muted);
    background: var(--white);
    font-size: 10px;
    font-weight: 700;
    transition: 0.25s ease;
}

.category-pill:hover,
.category-pill.active {
    border-color: var(--primary);
    color: var(--white);
    background: var(--primary);
}


/* Catalog sections */

.catalog-products-section {
    padding: 85px 0;
    background: var(--white);
}

.catalog-section-light {
    background: var(--light);
}

.catalog-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.catalog-section-heading h2 {
    color: var(--dark);
    font-size: 31px;
    line-height: 1.2;
}

.catalog-section-heading p {
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px;
}

.catalog-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.catalog-product-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: var(--white);
    transition: 0.3s ease;
}

.catalog-section-light .catalog-product-card {
    background: var(--white);
}

.catalog-product-card:hover {
    border-color: #bfdbfe;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.catalog-product-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 800;
}

.pulsa-product {
    color: #2563eb;
    background: #eff6ff;
}

.data-product {
    color: #0891b2;
    background: #ecfeff;
}

.game-product {
    color: #7c3aed;
    background: #f5f3ff;
}

.pln-product {
    color: #ea580c;
    background: #fff7ed;
}

.wallet-product {
    color: #059669;
    background: #ecfdf5;
}

.catalog-product-content > span {
    color: var(--primary);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.catalog-product-content h3 {
    margin-top: 5px;
    color: var(--dark);
    font-size: 14px;
}

.catalog-product-content p {
    min-height: 55px;
    margin-top: 7px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.7;
}

.catalog-product-content a {
    display: inline-flex;
    margin-top: 14px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
}


/* Information */

.catalog-info-section {
    padding: 90px 0;
    background: var(--dark);
}

.catalog-info-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 90px;
    align-items: center;
}

.catalog-info-content h2 {
    max-width: 580px;
    color: var(--white);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
}

.catalog-info-content p {
    max-width: 570px;
    margin-top: 17px;
    color: #9ca3af;
    font-size: 12px;
}

.catalog-info-list {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.catalog-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.catalog-info-item span {
    color: #60a5fa;
    font-size: 10px;
    font-weight: 800;
}

.catalog-info-item strong {
    color: var(--white);
    font-size: 12px;
}

/* =========================
   PULSA PAGE
========================= */

.product-page-hero {
    padding: 80px 0;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(37, 99, 235, 0.12),
            transparent 35%
        ),
        var(--light);
}

.product-page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    gap: 70px;
    align-items: center;
}

.product-page-content h1 {
    max-width: 650px;
    margin-top: 8px;
    color: var(--dark);
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.product-page-content h1 span {
    display: block;
    color: var(--primary);
}

.product-page-content p {
    max-width: 620px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.product-hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.product-page-visual {
    display: flex;
    justify-content: center;
}

.phone-card {
    width: 300px;
    min-height: 410px;
    padding: 22px;
    border-radius: 30px;
    color: var(--white);
    background: var(--dark);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
    transform: rotate(3deg);
}

.phone-card-top,
.phone-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.phone-card-top {
    font-size: 11px;
    font-weight: 800;
}

.phone-card-top small {
    color: #60a5fa;
    font-size: 8px;
    letter-spacing: 1px;
}

.phone-screen {
    min-height: 315px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.phone-icon {
    width: 95px;
    height: 95px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 27px;
    color: var(--white);
    background: var(--primary);
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.3);
}

.phone-screen strong {
    font-size: 21px;
}

.phone-screen span {
    margin-top: 7px;
    color: #9ca3af;
    font-size: 9px;
}

.phone-card-bottom {
    color: #9ca3af;
    font-size: 7px;
    letter-spacing: 1px;
}


/* Operator */

.operator-section {
    padding: 85px 0;
    background: var(--white);
}

.section-heading-center {
    max-width: 650px;
    margin: 0 auto 35px;
    text-align: center;
}

.section-heading-center h2 {
    color: var(--dark);
    font-size: 32px;
}

.section-heading-center p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.operator-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.operator-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    transition: 0.3s ease;
}

.operator-card:hover {
    border-color: #bfdbfe;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.operator-logo {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 800;
}

.telkomsel-logo {
    color: #dc2626;
    background: #fef2f2;
}

.indosat-logo {
    color: #ea580c;
    background: #fff7ed;
}

.xl-logo {
    color: #2563eb;
    background: #eff6ff;
}

.tri-logo {
    color: #7c3aed;
    background: #f5f3ff;
}

.smartfren-logo {
    color: #db2777;
    background: #fdf2f8;
}

.byu-logo {
    color: #0891b2;
    background: #ecfeff;
}

.operator-card strong {
    display: block;
    color: var(--dark);
    font-size: 13px;
}

.operator-card span {
    display: block;
    margin-top: 4px;
    color: var(--primary);
    font-size: 9px;
    font-weight: 700;
}


/* Nominal */

.nominal-section {
    padding: 85px 0;
    background: var(--light);
}

.section-heading-row {
    margin-bottom: 30px;
}

.section-heading-row h2 {
    color: var(--dark);
    font-size: 32px;
}

.section-heading-row p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
}

.nominal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.nominal-card {
    padding: 21px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    transition: 0.3s ease;
}

.nominal-card:hover {
    border-color: #bfdbfe;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.nominal-card-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 14px;
    color: var(--primary);
    background: #eff6ff;
    font-size: 11px;
    font-weight: 800;
}

.nominal-card-content span {
    color: var(--primary);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nominal-card-content h3 {
    margin-top: 5px;
    color: var(--dark);
    font-size: 14px;
}

.nominal-card-content p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.7;
}


/* Operator Detail */

.operator-detail-section {
    padding: 70px 0;
    background: var(--white);
}

.operator-detail-light {
    background: var(--light);
}

.operator-detail-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 35px;
    align-items: center;
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
}

.operator-detail-light .operator-detail-card {
    background: var(--white);
}

.operator-detail-icon {
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    border-radius: 25px;
    font-size: 24px;
    font-weight: 800;
}

.operator-detail-content h2 {
    color: var(--dark);
    font-size: 27px;
}

.operator-detail-content p {
    max-width: 700px;
    margin: 10px 0 16px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.8;
}


/* Information */

.pulsa-information {
    padding: 90px 0;
    background: var(--dark);
}

.pulsa-information-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.pulsa-information-content h2 {
    max-width: 580px;
    color: var(--white);
    font-size: 40px;
    line-height: 1.15;
}

.pulsa-information-content p {
    max-width: 570px;
    margin-top: 15px;
    color: #9ca3af;
    font-size: 12px;
    line-height: 1.8;
}

.pulsa-information-points {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.pulsa-point {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pulsa-point > span {
    color: #60a5fa;
    font-size: 10px;
    font-weight: 800;
}

.pulsa-point strong {
    color: var(--white);
    font-size: 12px;
}

.pulsa-point p {
    margin-top: 5px;
    color: #9ca3af;
    font-size: 9px;
    line-height: 1.6;
}

/* =========================
   PAKET DATA
========================= */

.data-hero {
    padding: 80px 0;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(37, 99, 235, 0.12),
            transparent 35%
        ),
        var(--light);
}

.data-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    gap: 70px;
    align-items: center;
}

.data-hero-content h1 {
    max-width: 650px;
    margin-top: 8px;
    color: var(--dark);
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.data-hero-content h1 span {
    display: block;
    color: var(--primary);
}

.data-hero-content p {
    max-width: 620px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.data-hero-visual {
    display: flex;
    justify-content: center;
}

.data-device {
    width: 300px;
    min-height: 400px;
    padding: 22px;
    border-radius: 30px;
    color: var(--white);
    background: var(--dark);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
    transform: rotate(-3deg);
}

.data-device-top {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 800;
}

.data-device-top small {
    color: #60a5fa;
    font-size: 8px;
    letter-spacing: 1px;
}

.data-device-screen {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.data-signal {
    display: flex;
    gap: 3px;
    align-items: end;
    margin-bottom: 20px;
}

.data-signal span {
    width: 5px;
    border-radius: 3px;
    background: #60a5fa;
}

.data-signal span:nth-child(1) {
    height: 6px;
}

.data-signal span:nth-child(2) {
    height: 11px;
}

.data-signal span:nth-child(3) {
    height: 16px;
}

.data-signal span:nth-child(4) {
    height: 21px;
}

.data-device-screen > strong {
    font-size: 25px;
}

.data-device-screen > small {
    margin-top: 5px;
    color: #9ca3af;
    font-size: 9px;
}

.data-circle {
    width: 105px;
    height: 105px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}

.data-circle span {
    color: #9ca3af;
    font-size: 9px;
}

.data-circle strong {
    margin-top: 3px;
    font-size: 13px;
}

.data-device-bottom {
    color: #9ca3af;
    text-align: center;
    font-size: 7px;
    letter-spacing: 1px;
}


/* Category */

.data-category-section {
    padding: 85px 0;
    background: var(--white);
}

.data-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.data-category-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    transition: .3s ease;
}

.data-category-card:hover {
    border-color: #bfdbfe;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.data-category-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--primary);
    background: #eff6ff;
    font-size: 9px;
    font-weight: 800;
}

.data-category-card strong {
    display: block;
    color: var(--dark);
    font-size: 12px;
}

.data-category-card span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 8px;
}


/* Operator */

.data-operator-section {
    padding: 85px 0;
    background: var(--light);
}

.data-operator-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.data-operator-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    transition: .3s ease;
}

.data-operator-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.data-operator-logo {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 800;
}

.data-operator-info span {
    color: var(--primary);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.data-operator-info h3 {
    margin-top: 5px;
    color: var(--dark);
    font-size: 15px;
}

.data-operator-info p {
    margin: 7px 0 10px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.7;
}

.data-operator-info a {
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
}


/* Product */

.data-product-section {
    padding: 85px 0;
    background: var(--white);
}

.data-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.data-product-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    transition: .3s ease;
}

.data-product-card:hover {
    border-color: #bfdbfe;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.data-product-top,
.data-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.data-badge {
    padding: 6px 9px;
    border-radius: 7px;
    color: var(--primary);
    background: #eff6ff;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .8px;
}

.data-product-code {
    color: #9ca3af;
    font-size: 7px;
    font-weight: 700;
}

.data-product-main {
    padding: 30px 0;
}

.data-product-main strong {
    display: block;
    color: var(--dark);
    font-size: 16px;
}

.data-product-main span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 10px;
}

.data-product-bottom {
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.data-product-bottom small {
    display: block;
    color: #9ca3af;
    font-size: 7px;
}

.data-product-bottom strong {
    display: block;
    margin-top: 3px;
    color: var(--dark);
    font-size: 10px;
}

.data-product-bottom a {
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
}


/* Information */

.data-info-section {
    padding: 80px 0;
    background: var(--light);
}

.data-info-card {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 25px;
    margin-bottom: 15px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
}

.data-info-number {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--primary);
    background: #eff6ff;
    font-size: 11px;
    font-weight: 800;
}

.data-info-card h2 {
    color: var(--dark);
    font-size: 22px;
}

.data-info-card p {
    max-width: 750px;
    margin-top: 9px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.8;
}


/* Tips */

.data-tips-section {
    padding: 90px 0;
    background: var(--dark);
}

.data-tips-grid {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 80px;
    align-items: center;
}

.data-tips-content h2 {
    max-width: 570px;
    color: var(--white);
    font-size: 40px;
    line-height: 1.15;
}

.data-tips-content p {
    max-width: 550px;
    margin-top: 16px;
    color: #9ca3af;
    font-size: 12px;
    line-height: 1.8;
}

.data-tips-list {
    border-top: 1px solid rgba(255,255,255,.1);
}

.data-tip {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.data-tip > span {
    color: #60a5fa;
    font-size: 10px;
    font-weight: 800;
}

.data-tip strong {
    color: var(--white);
    font-size: 12px;
}

.data-tip p {
    margin-top: 5px;
    color: #9ca3af;
    font-size: 9px;
    line-height: 1.6;
}

/* =========================================
   VOUCHER GAME
========================================= */

.game-hero {
    padding: 80px 0;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(37, 99, 235, .13),
            transparent 34%
        ),
        var(--light);
}

.game-hero-grid {
    display: grid;
    grid-template-columns: 1fr .75fr;
    gap: 70px;
    align-items: center;
}

.game-hero-content h1 {
    max-width: 680px;
    margin-top: 8px;
    color: var(--dark);
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.game-hero-content h1 span {
    display: block;
    color: var(--primary);
}

.game-hero-content p {
    max-width: 610px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.game-hero-visual {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-hero-visual > img {
    width: min(100%, 470px);
    height: auto;
    display: block;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 30px 70px rgba(15, 23, 42, .16);
}

.game-floating-card {
    position: absolute;
    right: 0;
    bottom: 20px;
    min-width: 155px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}

.game-floating-card span {
    display: block;
    color: var(--primary);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.game-floating-card strong {
    display: block;
    margin-top: 5px;
    color: var(--dark);
    font-size: 24px;
}

.game-floating-card small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 8px;
}

.game-trust-row {
    display: flex;
    gap: 35px;
    margin-top: 45px;
}

.game-trust-row div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.game-trust-row strong {
    color: var(--primary);
    font-size: 11px;
}

.game-trust-row span {
    color: var(--muted);
    font-size: 8px;
}


/* =========================================
   CATEGORY
========================================= */

.game-category-section {
    padding: 85px 0;
    background: var(--white);
}

.game-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.game-category-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 21px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: var(--white);
    transition: .3s ease;
}

.game-category-card:hover {
    border-color: #bfdbfe;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.game-category-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--primary);
    background: #eff6ff;
    font-size: 10px;
    font-weight: 800;
}

.game-category-card strong {
    display: block;
    color: var(--dark);
    font-size: 12px;
}

.game-category-card span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 8px;
    line-height: 1.5;
}


/* =========================================
   PRODUCT
========================================= */

.game-product-section {
    padding: 85px 0;
    background: var(--light);
}

.game-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.game-product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    transition: .3s ease;
}

.game-product-card:hover {
    border-color: #bfdbfe;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.game-product-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e5e7eb;
}

.game-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.game-product-card:hover .game-product-image img {
    transform: scale(1.04);
}

.game-product-tag {
    position: absolute;
    top: 13px;
    left: 13px;
    padding: 6px 9px;
    border-radius: 7px;
    color: var(--primary);
    background: rgba(255,255,255,.94);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .7px;
}

.game-product-content {
    padding: 22px;
}

.game-product-type {
    color: var(--primary);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.game-product-content h3 {
    margin-top: 6px;
    color: var(--dark);
    font-size: 16px;
}

.game-product-content p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.7;
}

.game-product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.game-product-meta span {
    color: #9ca3af;
    font-size: 8px;
}

.game-product-meta a {
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
}


/* =========================================
   FEATURE
========================================= */

.game-feature-section {
    padding: 90px 0;
    background: var(--white);
}

.game-feature-section:nth-of-type(even) {
    background: var(--light);
}

.game-feature-grid {
    display: grid;
    grid-template-columns: .95fr 1fr;
    gap: 75px;
    align-items: center;
}

.game-feature-image {
    overflow: hidden;
    border-radius: 25px;
}

.game-feature-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
    object-fit: cover;
}

.game-feature-content h2 {
    max-width: 570px;
    margin-top: 7px;
    color: var(--dark);
    font-size: 38px;
    line-height: 1.15;
}

.game-feature-content > p {
    max-width: 570px;
    margin-top: 17px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.game-check-list {
    margin: 25px 0;
    padding: 0;
    list-style: none;
}

.game-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 10px;
}

.game-check-list li span {
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--primary);
    background: #eff6ff;
    font-size: 9px;
    font-weight: 800;
}

.game-feature-stat {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.game-feature-stat div {
    min-width: 120px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--white);
}

.game-feature-stat strong {
    display: block;
    color: var(--primary);
    font-size: 13px;
}

.game-feature-stat span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 8px;
}


/* =========================================
   CONSOLE
========================================= */

.game-console-section {
    padding: 90px 0;
    background: var(--dark);
}

.game-console-inner {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 60px;
    align-items: center;
}

.game-console-content h2 {
    max-width: 570px;
    margin-top: 7px;
    color: var(--white);
    font-size: 38px;
    line-height: 1.15;
}

.game-console-content p {
    max-width: 540px;
    margin: 17px 0 25px;
    color: #9ca3af;
    font-size: 12px;
    line-height: 1.8;
}

.game-console-visual {
    overflow: hidden;
    border-radius: 23px;
}

.game-console-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* =========================================
   ORDER
========================================= */

.game-order-section {
    padding: 90px 0;
    background: var(--white);
}

.game-order-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.game-order-card {
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    transition: .3s ease;
}

.game-order-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.game-order-card > span {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    color: var(--primary);
    background: #eff6ff;
    font-size: 9px;
    font-weight: 800;
}

.game-order-card h3 {
    margin-top: 20px;
    color: var(--dark);
    font-size: 14px;
}

.game-order-card p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.7;
}

.center-button {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}


/* =========================================
   GAME VOUCHER
========================================= */

.game-voucher-section {
    padding: 90px 0;
    background: var(--light);
}

.game-voucher-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 70px;
    align-items: center;
}

.game-voucher-content h2 {
    max-width: 570px;
    margin-top: 7px;
    color: var(--dark);
    font-size: 38px;
    line-height: 1.15;
}

.game-voucher-content > p {
    max-width: 580px;
    margin-top: 17px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.game-voucher-points {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.game-voucher-points div {
    flex: 1;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--white);
}

.game-voucher-points strong {
    display: block;
    color: var(--primary);
    font-size: 10px;
}

.game-voucher-points span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 8px;
}

.game-voucher-image {
    overflow: hidden;
    border-radius: 25px;
}

.game-voucher-image img {
    width: 100%;
    height: auto;
    display: block;
}


/* =========================================
   FAQ
========================================= */

.game-faq-section {
    padding: 90px 0;
    background: var(--white);
}

.game-faq-list {
    max-width: 850px;
    margin: 40px auto 0;
}

.game-faq-item {
    border-bottom: 1px solid var(--border);
}

.game-faq-item summary {
    position: relative;
    padding: 21px 40px 21px 0;
    color: var(--dark);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    list-style: none;
}

.game-faq-item summary::-webkit-details-marker {
    display: none;
}

.game-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 18px;
    right: 4px;
    color: var(--primary);
    font-size: 20px;
    font-weight: 400;
}

.game-faq-item[open] summary::after {
    content: "−";
}

.game-faq-item p {
    max-width: 750px;
    padding: 0 40px 22px 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.8;
}

/* =========================================
   TOKEN PLN
========================================= */

.pln-hero {
    padding: 80px 0;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(37, 99, 235, .13),
            transparent 34%
        ),
        var(--light);
}

.pln-hero-grid {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 70px;
    align-items: center;
}

.pln-hero-content h1 {
    max-width: 650px;
    margin-top: 8px;
    color: var(--dark);
    font-size: clamp(40px, 5vw, 57px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.pln-hero-content p {
    max-width: 600px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.pln-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pln-hero-visual > img {
    width: min(100%, 480px);
    height: auto;
    display: block;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 30px 70px rgba(15, 23, 42, .16);
}

.pln-floating-card {
    position: absolute;
    right: 0;
    bottom: 25px;
    min-width: 175px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: rgba(255,255,255,.95);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}

.pln-floating-card span {
    display: block;
    color: var(--primary);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.pln-floating-card strong {
    display: block;
    margin-top: 5px;
    color: var(--dark);
    font-size: 21px;
}

.pln-floating-card small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 8px;
    line-height: 1.5;
}

.pln-highlight-row {
    display: flex;
    gap: 35px;
    margin-top: 42px;
}

.pln-highlight-row div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pln-highlight-row strong {
    color: var(--primary);
    font-size: 11px;
}

.pln-highlight-row span {
    color: var(--muted);
    font-size: 8px;
}


/* =========================================
   INTRO
========================================= */

.pln-intro {
    padding: 90px 0;
    background: var(--white);
}

.pln-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 70px;
    align-items: center;
}

.pln-intro-image {
    overflow: hidden;
    border-radius: 25px;
}

.pln-intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.pln-intro-content h2 {
    max-width: 600px;
    margin-top: 7px;
    color: var(--dark);
    font-size: 38px;
    line-height: 1.15;
}

.pln-intro-content > p {
    max-width: 580px;
    margin-top: 17px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.pln-info-box {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 25px;
    padding: 18px 20px;
    border-left: 3px solid var(--primary);
    border-radius: 10px;
    background: #eff6ff;
}

.pln-info-box strong {
    color: var(--dark);
    font-size: 10px;
}

.pln-info-box span {
    color: var(--muted);
    font-size: 9px;
    line-height: 1.6;
}


/* =========================================
   NOMINAL
========================================= */

.pln-nominal-section {
    padding: 90px 0;
    background: var(--light);
}

.pln-nominal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.pln-nominal-card {
    position: relative;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    transition: .3s ease;
}

.pln-nominal-card:hover {
    border-color: #bfdbfe;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.pln-nominal-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--primary);
    background: #eff6ff;
    font-size: 9px;
    font-weight: 800;
}

.pln-nominal-card > span {
    display: block;
    margin-top: 20px;
    color: var(--primary);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.pln-nominal-card h3 {
    margin-top: 5px;
    color: var(--dark);
    font-size: 22px;
}

.pln-nominal-card p {
    min-height: 48px;
    margin-top: 9px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.7;
}

.pln-nominal-card a {
    display: inline-block;
    margin-top: 17px;
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
}


/* =========================================
   PROCESS
========================================= */

.pln-process-section {
    padding: 90px 0;
    background: var(--white);
}

.pln-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.pln-process-card {
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    transition: .3s ease;
}

.pln-process-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.pln-process-number {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--primary);
    background: #eff6ff;
    font-size: 9px;
    font-weight: 800;
}

.pln-process-card h3 {
    margin-top: 20px;
    color: var(--dark);
    font-size: 14px;
}

.pln-process-card p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.7;
}


/* =========================================
   IMPORTANT
========================================= */

.pln-important-section {
    padding: 90px 0;
    background: var(--light);
}

.pln-important-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 70px;
    align-items: center;
}

.pln-important-content h2 {
    max-width: 580px;
    margin-top: 7px;
    color: var(--dark);
    font-size: 38px;
    line-height: 1.15;
}

.pln-important-content > p {
    max-width: 580px;
    margin-top: 17px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.pln-check-list {
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.pln-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 10px;
}

.pln-check-list li span {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--primary);
    background: #dbeafe;
    font-size: 9px;
    font-weight: 800;
}

.pln-important-image {
    overflow: hidden;
    border-radius: 25px;
}

.pln-important-image img {
    width: 100%;
    height: auto;
    display: block;
}


/* =========================================
   BENEFIT
========================================= */

.pln-benefit-section {
    padding: 90px 0;
    background: var(--white);
}

.pln-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.pln-benefit-card {
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
}

.pln-benefit-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--primary);
    background: #eff6ff;
    font-size: 9px;
    font-weight: 800;
}

.pln-benefit-card h3 {
    margin-top: 18px;
    color: var(--dark);
    font-size: 14px;
}

.pln-benefit-card p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.7;
}


/* =========================================
   FAQ
========================================= */

.pln-faq-section {
    padding: 90px 0;
    background: var(--light);
}

.pln-faq-list {
    max-width: 850px;
    margin: 40px auto 0;
}

.pln-faq-item {
    border-bottom: 1px solid var(--border);
}

.pln-faq-item summary {
    position: relative;
    padding: 21px 40px 21px 0;
    color: var(--dark);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    list-style: none;
}

.pln-faq-item summary::-webkit-details-marker {
    display: none;
}

.pln-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 17px;
    right: 5px;
    color: var(--primary);
    font-size: 20px;
}

.pln-faq-item[open] summary::after {
    content: "−";
}

.pln-faq-item p {
    max-width: 750px;
    padding: 0 40px 22px 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.8;
}

/* =========================================
   E-WALLET
========================================= */

.ewallet-hero {
    padding: 80px 0;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(37, 99, 235, .13),
            transparent 34%
        ),
        var(--light);
}

.ewallet-hero-grid {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 70px;
    align-items: center;
}

.ewallet-hero-content h1 {
    max-width: 650px;
    margin-top: 8px;
    color: var(--dark);
    font-size: clamp(40px, 5vw, 57px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.ewallet-hero-content p {
    max-width: 600px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.ewallet-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.ewallet-hero-visual > img {
    width: min(100%, 480px);
    height: auto;
    display: block;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, .16);
}

.ewallet-floating-card {
    position: absolute;
    right: 0;
    bottom: 25px;
    min-width: 180px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: rgba(255,255,255,.95);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}

.ewallet-floating-card span {
    display: block;
    color: var(--primary);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.ewallet-floating-card strong {
    display: block;
    margin-top: 5px;
    color: var(--dark);
    font-size: 21px;
}

.ewallet-floating-card small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 8px;
    line-height: 1.5;
}

.ewallet-highlight-row {
    display: flex;
    gap: 35px;
    margin-top: 42px;
}

.ewallet-highlight-row div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ewallet-highlight-row strong {
    color: var(--primary);
    font-size: 11px;
}

.ewallet-highlight-row span {
    color: var(--muted);
    font-size: 8px;
}


/* =========================================
   INTRO
========================================= */

.ewallet-intro {
    padding: 90px 0;
    background: var(--white);
}

.ewallet-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 70px;
    align-items: center;
}

.ewallet-intro-image {
    overflow: hidden;
    border-radius: 25px;
}

.ewallet-intro-image img {
    width: 100%;
    display: block;
}

.ewallet-intro-content h2 {
    max-width: 600px;
    margin-top: 7px;
    color: var(--dark);
    font-size: 38px;
    line-height: 1.15;
}

.ewallet-intro-content > p {
    max-width: 580px;
    margin-top: 17px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.ewallet-info-box {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 25px;
    padding: 18px 20px;
    border-left: 3px solid var(--primary);
    border-radius: 10px;
    background: #eff6ff;
}

.ewallet-info-box strong {
    color: var(--dark);
    font-size: 10px;
}

.ewallet-info-box span {
    color: var(--muted);
    font-size: 9px;
    line-height: 1.6;
}


/* =========================================
   E-WALLET PRODUCT
========================================= */

.ewallet-product-section {
    padding: 90px 0;
    background: var(--light);
}

.ewallet-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.ewallet-product-card {
    display: flex;
    gap: 17px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    transition: .3s ease;
}

.ewallet-product-card:hover {
    border-color: #bfdbfe;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.ewallet-product-logo {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--primary);
    background: #eff6ff;
    font-size: 8px;
    font-weight: 800;
    text-align: center;
}

.ewallet-product-content > span {
    color: var(--primary);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.ewallet-product-content h3 {
    margin-top: 4px;
    color: var(--dark);
    font-size: 18px;
}

.ewallet-product-content p {
    margin-top: 7px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.65;
}

.ewallet-product-content a {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
}


/* =========================================
   BENEFITS
========================================= */

.ewallet-benefit-section {
    padding: 90px 0;
    background: var(--white);
}

.ewallet-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.ewallet-benefit-card {
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 18px;
}

.ewallet-benefit-icon,
.ewallet-step {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--primary);
    background: #eff6ff;
    font-size: 9px;
    font-weight: 800;
}

.ewallet-benefit-card h3 {
    margin-top: 18px;
    color: var(--dark);
    font-size: 14px;
}

.ewallet-benefit-card p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.7;
}


/* =========================================
   PROCESS
========================================= */

.ewallet-process-section {
    padding: 90px 0;
    background: var(--light);
}

.ewallet-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.ewallet-process-card {
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
}

.ewallet-process-card h3 {
    margin-top: 20px;
    color: var(--dark);
    font-size: 14px;
}

.ewallet-process-card p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.7;
}


/* =========================================
   CHECK
========================================= */

.ewallet-check-section {
    padding: 90px 0;
    background: var(--white);
}

.ewallet-check-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 70px;
    align-items: center;
}

.ewallet-check-content h2 {
    max-width: 580px;
    margin-top: 7px;
    color: var(--dark);
    font-size: 38px;
    line-height: 1.15;
}

.ewallet-check-content > p {
    max-width: 580px;
    margin-top: 17px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.ewallet-check-list {
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.ewallet-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 10px;
}

.ewallet-check-list li span {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--primary);
    background: #dbeafe;
    font-size: 9px;
    font-weight: 800;
}

.ewallet-check-image {
    overflow: hidden;
    border-radius: 25px;
}

.ewallet-check-image img {
    width: 100%;
    display: block;
}


/* =========================================
   FAQ
========================================= */

.ewallet-faq-section {
    padding: 90px 0;
    background: var(--light);
}

.ewallet-faq-list {
    max-width: 850px;
    margin: 40px auto 0;
}

.ewallet-faq-item {
    border-bottom: 1px solid var(--border);
}

.ewallet-faq-item summary {
    position: relative;
    padding: 21px 40px 21px 0;
    color: var(--dark);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    list-style: none;
}

.ewallet-faq-item summary::-webkit-details-marker {
    display: none;
}

.ewallet-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 17px;
    right: 5px;
    color: var(--primary);
    font-size: 20px;
}

.ewallet-faq-item[open] summary::after {
    content: "−";
}

.ewallet-faq-item p {
    max-width: 750px;
    padding: 0 40px 22px 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.8;
}

/* =========================================
   CARA ORDER
========================================= */

.order-guide-hero {
    padding: 80px 0;
    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(37, 99, 235, .12),
            transparent 35%
        ),
        var(--light);
}

.order-guide-hero-grid {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 70px;
    align-items: center;
}

.order-guide-content h1 {
    max-width: 650px;
    margin-top: 8px;
    color: var(--dark);
    font-size: clamp(40px, 5vw, 57px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.order-guide-content > p {
    max-width: 590px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.order-guide-stat {
    display: flex;
    gap: 35px;
    margin-top: 40px;
}

.order-guide-stat div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-guide-stat strong {
    color: var(--primary);
    font-size: 18px;
}

.order-guide-stat span {
    color: var(--muted);
    font-size: 8px;
}

.order-guide-hero-image {
    overflow: hidden;
    border-radius: 28px;
}

.order-guide-hero-image img {
    width: 100%;
    display: block;
    box-shadow: 0 30px 70px rgba(15,23,42,.15);
}


/* =========================================
   STEP SECTION
========================================= */

.order-step-section {
    padding: 90px 0;
    background: var(--white);
}

.order-step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
    margin-top: 45px;
}

.order-step-card {
    position: relative;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    transition: .3s ease;
}

.order-step-card:hover {
    border-color: #bfdbfe;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.order-step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #dbeafe;
    font-size: 28px;
    font-weight: 800;
}

.order-step-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #eff6ff;
    font-size: 20px;
}

.order-step-card > span {
    display: block;
    margin-top: 23px;
    color: var(--primary);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.order-step-card h3 {
    margin-top: 6px;
    color: var(--dark);
    font-size: 17px;
}

.order-step-card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.75;
}

.order-step-card a {
    display: inline-block;
    margin-top: 13px;
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
}


/* =========================================
   PRODUCT GUIDE
========================================= */

.order-product-guide {
    padding: 90px 0;
    background: var(--light);
}

.order-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.order-product-guide-card {
    display: grid;
    grid-template-columns: 55px 1fr 20px;
    align-items: center;
    gap: 17px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    transition: .3s ease;
}

.order-product-guide-card:hover {
    border-color: #bfdbfe;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.order-guide-card-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #eff6ff;
    font-size: 20px;
}

.order-product-guide-card span {
    color: var(--primary);
    font-size: 7px;
    font-weight: 800;
}

.order-product-guide-card h3 {
    margin-top: 3px;
    color: var(--dark);
    font-size: 16px;
}

.order-product-guide-card p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.6;
}

.order-product-guide-card > strong {
    color: var(--primary);
    font-size: 18px;
}


/* =========================================
   TIPS
========================================= */

.order-tips-section {
    padding: 90px 0;
    background: var(--white);
}

.order-tips-grid {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 70px;
    align-items: center;
}

.order-tips-image {
    overflow: hidden;
    border-radius: 25px;
}

.order-tips-image img {
    width: 100%;
    display: block;
}

.order-tips-content h2 {
    max-width: 580px;
    margin-top: 7px;
    color: var(--dark);
    font-size: 38px;
    line-height: 1.15;
}

.order-tips-content > p {
    max-width: 580px;
    margin-top: 17px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.tips-list {
    margin-top: 25px;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
}

.tip-item > div {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: var(--primary);
    background: #eff6ff;
    font-size: 8px;
    font-weight: 800;
}

.tip-item p {
    color: var(--dark);
    font-size: 10px;
}


/* =========================================
   ORDER FLOW
========================================= */

.order-flow-section {
    padding: 90px 0;
    background: var(--light);
}

.order-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.order-flow-item {
    min-width: 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.order-flow-item span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary);
    font-size: 9px;
    font-weight: 800;
}

.order-flow-item strong {
    margin-top: 8px;
    color: var(--dark);
    font-size: 11px;
}

.order-flow-item small {
    color: var(--muted);
    font-size: 8px;
}

.order-flow-line {
    width: 70px;
    height: 1px;
    background: #bfdbfe;
}


/* =========================================
   FAQ
========================================= */

.order-faq-section {
    padding: 90px 0;
    background: var(--white);
}

.order-faq-list {
    max-width: 850px;
    margin: 40px auto 0;
}

.order-faq-item {
    border-bottom: 1px solid var(--border);
}

.order-faq-item summary {
    position: relative;
    padding: 21px 40px 21px 0;
    color: var(--dark);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    list-style: none;
}

.order-faq-item summary::-webkit-details-marker {
    display: none;
}

.order-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 17px;
    right: 5px;
    color: var(--primary);
    font-size: 20px;
}

.order-faq-item[open] summary::after {
    content: "−";
}

.order-faq-item p {
    max-width: 750px;
    padding: 0 40px 22px 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.8;
}

/* =========================================
   CEK PESANAN HERO
========================================= */

.check-order-hero {
    padding: 85px 0;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(37, 99, 235, .12),
            transparent 35%
        ),
        var(--light);
}

.check-order-hero-grid {
    display: grid;
    grid-template-columns: 1fr .78fr;
    gap: 70px;
    align-items: center;
}

.check-order-intro h1 {
    max-width: 620px;
    margin-top: 8px;
    color: var(--dark);
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.07;
    letter-spacing: -2px;
}

.check-order-intro > p {
    max-width: 570px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.check-order-features {
    margin-top: 30px;
    display: grid;
    gap: 12px;
}

.check-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-feature > span {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--primary);
    background: #dbeafe;
    font-size: 10px;
    font-weight: 800;
}

.check-feature p {
    color: var(--dark);
    font-size: 10px;
}


/* =========================================
   CHECK CARD
========================================= */

.order-check-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 25px;
    background: var(--white);
    box-shadow: 0 25px 70px rgba(15, 23, 42, .10);
}

.order-check-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.order-check-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #eff6ff;
    font-size: 20px;
}

.mini-label {
    color: var(--primary);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.order-check-card-header h2 {
    margin-top: 3px;
    color: var(--dark);
    font-size: 21px;
}

.order-check-form {
    margin-top: 28px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    color: var(--dark);
    font-size: 10px;
    font-weight: 700;
}

.form-group input {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    outline: none;
    color: var(--dark);
    background: var(--white);
    font-family: inherit;
    font-size: 11px;
    transition: .2s ease;
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .08);
}

.form-group small {
    color: var(--muted);
    font-size: 8px;
    line-height: 1.5;
}

.order-check-submit {
    width: 100%;
    margin-top: 17px;
    border: 0;
    cursor: pointer;
}

.order-check-submit span {
    margin-left: 5px;
}

.order-check-message {
    min-height: 20px;
    margin-top: 14px;
    font-size: 9px;
    line-height: 1.6;
}

.order-check-message.error {
    color: #dc2626;
}

.order-check-message.success {
    padding: 11px;
    border-radius: 10px;
    color: #166534;
    background: #f0fdf4;
}

.order-check-note {
    display: flex;
    gap: 10px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.order-check-note span {
    font-size: 14px;
}

.order-check-note p {
    color: var(--muted);
    font-size: 8px;
    line-height: 1.6;
}


/* =========================================
   STATUS SECTION
========================================= */

.order-status-section {
    padding: 90px 0;
    background: var(--white);
}

.status-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 45px;
}

.status-info-card {
    display: flex;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    transition: .3s ease;
}

.status-info-card:hover {
    border-color: #bfdbfe;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.status-info-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    font-size: 18px;
    font-weight: 800;
}

.status-info-icon.pending {
    color: #a16207;
    background: #fef9c3;
}

.status-info-icon.process {
    color: #1d4ed8;
    background: #dbeafe;
}

.status-info-icon.success {
    color: #15803d;
    background: #dcfce7;
}

.status-info-icon.review {
    color: #c2410c;
    background: #ffedd5;
}

.status-badge {
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 6px;
    font-size: 6px;
    font-weight: 800;
    letter-spacing: .7px;
}

.status-badge.pending {
    color: #854d0e;
    background: #fef9c3;
}

.status-badge.process {
    color: #1e40af;
    background: #dbeafe;
}

.status-badge.success {
    color: #166534;
    background: #dcfce7;
}

.status-badge.review {
    color: #9a3412;
    background: #ffedd5;
}

.status-info-card h3 {
    margin-top: 8px;
    color: var(--dark);
    font-size: 15px;
}

.status-info-card p {
    max-width: 450px;
    margin-top: 7px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.7;
}


/* =========================================
   HOW CHECK
========================================= */

.how-check-section {
    padding: 90px 0;
    background: var(--light);
}

.how-check-grid {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 70px;
    align-items: center;
}

.how-check-content h2 {
    max-width: 560px;
    margin-top: 7px;
    color: var(--dark);
    font-size: 38px;
    line-height: 1.15;
}

.how-check-content > p {
    max-width: 570px;
    margin-top: 17px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.8;
}

.how-check-list {
    margin-top: 30px;
}

.how-check-item {
    display: flex;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.how-check-item > strong {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--primary);
    background: #dbeafe;
    font-size: 8px;
}

.how-check-item h3 {
    color: var(--dark);
    font-size: 12px;
}

.how-check-item p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.6;
}

.how-check-image {
    overflow: hidden;
    border-radius: 25px;
}

.how-check-image img {
    width: 100%;
    display: block;
}


/* =========================================
   SECURITY
========================================= */

.order-security-section {
    padding: 80px 0;
    background: var(--white);
}

.security-box {
    display: flex;
    gap: 25px;
    padding: 35px;
    border: 1px solid #bfdbfe;
    border-radius: 24px;
    background: #eff6ff;
}

.security-icon {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--white);
    font-size: 21px;
}

.security-content h2 {
    max-width: 650px;
    margin-top: 7px;
    color: var(--dark);
    font-size: 28px;
    line-height: 1.2;
}

.security-content > p {
    max-width: 720px;
    margin-top: 13px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.8;
}

.security-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin: 20px 0;
}

.security-points span {
    color: var(--dark);
    font-size: 9px;
    font-weight: 600;
}


/* =========================================
   FAQ
========================================= */

.check-faq-section {
    padding: 90px 0;
    background: var(--light);
}

.check-faq-list {
    max-width: 850px;
    margin: 40px auto 0;
}

.check-faq-item {
    border-bottom: 1px solid var(--border);
}

.check-faq-item summary {
    position: relative;
    padding: 21px 40px 21px 0;
    color: var(--dark);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    list-style: none;
}

.check-faq-item summary::-webkit-details-marker {
    display: none;
}

.check-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 16px;
    right: 5px;
    color: var(--primary);
    font-size: 20px;
}

.check-faq-item[open] summary::after {
    content: "−";
}

.check-faq-item p {
    max-width: 750px;
    padding: 0 40px 22px 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.8;
}

 /* =========================================
    FAQ HERO
 ========================================= */

.faq-hero {
    padding: 85px 0;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(37, 99, 235, .12),
            transparent 35%
        ),
        var(--light);
}

.faq-hero-grid {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 70px;
    align-items: center;
}

.faq-hero-content h1 {
    max-width: 650px;
    margin-top: 8px;
    color: var(--dark);
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.07;
    letter-spacing: -2px;
}

.faq-hero-content > p {
    max-width: 600px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.faq-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.faq-hero-image {
    overflow: hidden;
    border-radius: 25px;
}

.faq-hero-image img {
    width: 100%;
    display: block;
}


/* =========================================
   CATEGORY
========================================= */

.faq-category-section {
    padding: 90px 0;
    background: var(--white);
}

.faq-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 45px;
}

.faq-category-card {
    position: relative;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    text-decoration: none;
    transition: .3s ease;
}

.faq-category-card:hover {
    border-color: #bfdbfe;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.faq-category-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #eff6ff;
    font-size: 18px;
}

.faq-category-card h3 {
    margin-top: 18px;
    color: var(--dark);
    font-size: 14px;
}

.faq-category-card p {
    max-width: 170px;
    margin-top: 7px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.6;
}

.faq-category-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}


/* =========================================
   FAQ MAIN
========================================= */

.faq-main-section {
    padding: 90px 0;
    background: var(--white);
}

.faq-main-section.faq-alt {
    background: var(--light);
}

.faq-section-title {
    max-width: 850px;
    margin: 0 auto;
}

.faq-section-title h2 {
    margin-top: 7px;
    color: var(--dark);
    font-size: 32px;
    line-height: 1.2;
}

.faq-list {
    max-width: 850px;
    margin: 35px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    position: relative;
    padding: 22px 45px 22px 0;
    color: var(--dark);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 16px;
    right: 5px;
    color: var(--primary);
    font-size: 21px;
    font-weight: 400;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    max-width: 760px;
    padding: 0 45px 22px 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.85;
}


/* =========================================
   HELP CARDS
========================================= */

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.help-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    transition: .3s ease;
}

.help-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.help-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #eff6ff;
    font-size: 18px;
}

.help-card h3 {
    margin-top: 18px;
    color: var(--dark);
    font-size: 15px;
}

.help-card p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.7;
}

.help-card a {
    display: inline-block;
    margin-top: 17px;
    color: var(--primary);
    font-size: 9px;
    font-weight: 700;
    text-decoration: none;
}

/* =========================================
   CONTACT HERO
========================================= */

.contact-hero {
    padding: 85px 0;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(37, 99, 235, .12),
            transparent 35%
        ),
        var(--light);
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 70px;
    align-items: center;
}

.contact-hero-content h1 {
    max-width: 650px;
    margin-top: 8px;
    color: var(--dark);
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.07;
    letter-spacing: -2px;
}

.contact-hero-content > p {
    max-width: 600px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.contact-hero-image {
    overflow: hidden;
    border-radius: 25px;
}

.contact-hero-image img {
    display: block;
    width: 100%;
}


/* =========================================
   CONTACT INFORMATION
========================================= */

.contact-info-section {
    padding: 90px 0;
    background: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1050px;
    margin: 45px auto 0;
}

.contact-info-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    transition: .3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #eff6ff;
    font-size: 19px;
}

.contact-info-card h3 {
    margin-top: 18px;
    color: var(--dark);
    font-size: 15px;
}

.contact-info-card p {
    margin-top: 9px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.75;
}

.contact-info-card a {
    display: inline-block;
    margin-top: 18px;
    color: var(--primary);
    font-size: 9px;
    font-weight: 700;
    text-decoration: none;
}


/* =========================================
   CONTACT FORM
========================================= */

.contact-form-section {
    padding: 90px 0;
    background: var(--light);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 55px;
    max-width: 1050px;
    margin: auto;
    align-items: start;
}

.contact-form-intro h2 {
    max-width: 450px;
    margin-top: 8px;
    color: var(--dark);
    font-size: 34px;
    line-height: 1.2;
}

.contact-form-intro > p {
    max-width: 460px;
    margin-top: 15px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.8;
}

.contact-note {
    display: flex;
    gap: 8px;
    margin-top: 28px;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    color: var(--muted);
    font-size: 9px;
    line-height: 1.65;
}

.contact-note strong {
    color: var(--dark);
    white-space: nowrap;
}


/* FORM */

.contact-form {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 9px;
    font-weight: 700;
}

.form-group label span {
    color: var(--muted);
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    background: var(--white);
    color: var(--dark);
    font-family: inherit;
    font-size: 10px;
    transition: .2s ease;
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .08);
}

.form-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.form-disclaimer {
    margin-top: 12px;
    color: var(--muted);
    font-size: 8px;
    line-height: 1.6;
    text-align: center;
}

.form-success {
    margin-top: 15px;
    padding: 13px;
    border-radius: 10px;
    background: #ecfdf5;
    color: #047857;
    font-size: 9px;
    line-height: 1.6;
}


/* =========================================
   QUICK HELP
========================================= */

.contact-help-section {
    padding: 90px 0;
    background: var(--white);
}

.quick-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.quick-help-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 17px;
    color: inherit;
    text-decoration: none;
    transition: .3s ease;
}

.quick-help-card:hover {
    transform: translateY(-3px);
    border-color: #bfdbfe;
    box-shadow: var(--shadow-sm);
}

.quick-help-card > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #eff6ff;
    font-size: 17px;
}

.quick-help-card h3 {
    color: var(--dark);
    font-size: 12px;
}

.quick-help-card p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 8px;
}

.quick-help-card b {
    color: var(--primary);
    font-size: 15px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-hero-content {
        text-align: center;
    }

    .contact-hero-content h1,
    .contact-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-hero-actions {
        justify-content: center;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 750px) {

    .contact-info-grid,
    .quick-help-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}


@media (max-width: 600px) {

    .contact-hero,
    .contact-info-section,
    .contact-form-section,
    .contact-help-section {
        padding: 65px 0;
    }

    .contact-hero-content h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .contact-form {
        padding: 20px;
    }

}

/* =========================================================
   KARTEL62 FAST CELL
   GLOBAL DESIGN SYSTEM
   ========================================================= */


/* =========================================================
   ROOT
   ========================================================= */

:root {

    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #eff6ff;

    --secondary: #0f172a;

    --dark: #111827;
    --dark-soft: #1e293b;

    --muted: #64748b;
    --muted-light: #94a3b8;

    --white: #ffffff;
    --light: #f8fafc;
    --light-blue: #f1f5ff;

    --border: #e2e8f0;
    --border-light: #edf2f7;

    --success: #059669;
    --success-bg: #ecfdf5;

    --warning: #d97706;
    --warning-bg: #fffbeb;

    --danger: #dc2626;
    --danger-bg: #fef2f2;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;

    --shadow-sm:
        0 4px 15px rgba(15, 23, 42, .05);

    --shadow-md:
        0 12px 35px rgba(15, 23, 42, .08);

    --shadow-lg:
        0 20px 50px rgba(15, 23, 42, .12);

    --container: 1180px;

    --transition:
        .25s ease;

}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    background: var(--white);

    color: var(--dark);

    font-family:
        "Inter",
        Arial,
        Helvetica,
        sans-serif;

    font-size: 14px;

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;

}


img {

    display: block;

    max-width: 100%;

    height: auto;

}


button,
input,
select,
textarea {

    font-family: inherit;

}


button {
    border: 0;
}


a {
    color: inherit;
}


::selection {

    background: var(--primary);

    color: var(--white);

}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;

}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {

    margin: 0;

    color: var(--dark);

    font-weight: 800;

    line-height: 1.2;

}


h1 {
    font-size: clamp(38px, 5vw, 60px);
}


h2 {
    font-size: clamp(28px, 3vw, 38px);
}


h3 {
    font-size: 18px;
}


p {
    margin: 0;
}


.section-label {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.section-label::before {

    content: "";

    width: 22px;

    height: 2px;

    border-radius: 20px;

    background: var(--primary);

}


.section-heading-center {

    max-width: 720px;

    margin-inline: auto;

    text-align: center;

}


.section-heading-center h2 {

    margin-top: 8px;

}


.section-heading-center p {

    max-width: 620px;

    margin: 14px auto 0;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.8;

}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    background:
        rgba(255, 255, 255, .95);

    border-bottom:
        1px solid var(--border-light);

    backdrop-filter:
        blur(14px);

}


.header-inner {

    min-height: 76px;

    display: flex;

    align-items: center;

    gap: 28px;

}


/* =========================================================
   BRAND
   ========================================================= */

.brand {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    color: var(--dark);

    text-decoration: none;

}


.brand-mark {

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    color: var(--white);

    font-size: 12px;

    font-weight: 900;

    box-shadow:
        0 8px 20px
        rgba(37, 99, 235, .22);

}


.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.brand-text strong {

    font-size: 14px;

    font-weight: 900;

    letter-spacing: -.3px;

}


.brand-text small {

    margin-top: 4px;

    color: var(--muted);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

}


/* =========================================================
   DESKTOP NAV
   ========================================================= */

.main-nav {

    display: flex;

    align-items: center;

    gap: 3px;

    margin-left: auto;

}


.main-nav a {

    padding: 9px 10px;

    border-radius: 8px;

    color: var(--muted);

    font-size: 9px;

    font-weight: 600;

    text-decoration: none;

    transition: var(--transition);

}


.main-nav a:hover,
.main-nav a.active {

    background: var(--primary-light);

    color: var(--primary);

}


/* =========================================================
   HEADER ACTION
   ========================================================= */

.header-actions {

    display: flex;

    align-items: center;

    gap: 8px;

}


.order-check {

    padding: 9px 12px;

    color: var(--primary);

    font-size: 9px;

    font-weight: 700;

    text-decoration: none;

}


.header-button {

    padding: 10px 15px;

    border-radius: 9px;

    background: var(--primary);

    color: var(--white);

    font-size: 9px;

    font-weight: 700;

    text-decoration: none;

    transition: var(--transition);

}


.header-button:hover {

    background: var(--primary-dark);

}


/* =========================================================
   MOBILE BUTTON
   ========================================================= */

.mobile-toggle {

    display: none;

    width: 40px;

    height: 40px;

    margin-left: auto;

    border-radius: 9px;

    background: var(--light);

    cursor: pointer;

}


.mobile-toggle span {

    display: block;

    width: 18px;

    height: 2px;

    margin: 4px auto;

    border-radius: 10px;

    background: var(--dark);

}


/* =========================================================
   MOBILE NAV
   ========================================================= */

.mobile-nav {

    display: none;

}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.breadcrumb-section {

    border-bottom: 1px solid var(--border-light);

    background: var(--white);

}


.breadcrumb {

    min-height: 48px;

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--muted);

    font-size: 9px;

}


.breadcrumb a {

    color: var(--primary);

    font-weight: 600;

    text-decoration: none;

}


.breadcrumb span:last-child {

    color: var(--dark);

    font-weight: 600;

}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {

    min-height: 43px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding: 0 18px;

    border-radius: 10px;

    font-size: 10px;

    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    transition: var(--transition);

}


.btn-primary {

    background: var(--primary);

    color: var(--white);

    box-shadow:
        0 8px 20px
        rgba(37, 99, 235, .16);

}


.btn-primary:hover {

    background: var(--primary-dark);

    transform: translateY(-2px);

}


.btn-secondary {

    border: 1px solid var(--border);

    background: var(--white);

    color: var(--dark);

}


.btn-secondary:hover {

    border-color: #bfdbfe;

    background: var(--primary-light);

    color: var(--primary);

}


.btn-light {

    background: var(--white);

    color: var(--primary);

}


.btn-outline-light {

    border: 1px solid rgba(255,255,255,.4);

    background: transparent;

    color: var(--white);

}


.btn-outline-light:hover {

    background: rgba(255,255,255,.1);

}


/* =========================================================
   HERO
   ========================================================= */

.hero {

    position: relative;

    overflow: hidden;

    padding: 90px 0;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(37,99,235,.12),
            transparent 35%
        ),
        var(--light);

}


.hero-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, .95fr);

    align-items: center;

    gap: 70px;

}


.hero-content h1 {

    max-width: 680px;

    margin-top: 9px;

    letter-spacing: -2.5px;

}


.hero-content > p {

    max-width: 610px;

    margin-top: 20px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.9;

}


.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 28px;

}


.hero-image {

    overflow: hidden;

    border-radius: var(--radius-xl);

}


.hero-image img {

    width: 100%;

}


/* =========================================================
   GENERIC SECTION
   ========================================================= */

.section {

    padding: 90px 0;

}


.section-light {

    background: var(--light);

}


.section-white {

    background: var(--white);

}


/* =========================================================
   PRODUCT GRID
   ========================================================= */

.product-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;

    margin-top: 40px;

}


.product-card {

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background: var(--white);

    text-decoration: none;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

}


.product-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-md);

}


.product-card-image {

    position: relative;

    aspect-ratio: 1 / .72;

    overflow: hidden;

    background: var(--light);

}


.product-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.product-card-body {

    padding: 18px;

}


.product-card-category {

    color: var(--primary);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .8px;

    text-transform: uppercase;

}


.product-card h3 {

    margin-top: 7px;

    font-size: 14px;

}


.product-card p {

    margin-top: 6px;

    color: var(--muted);

    font-size: 9px;

    line-height: 1.6;

}


.product-card-price {

    display: block;

    margin-top: 14px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 800;

}


/* =========================================================
   CATEGORY CARDS
   ========================================================= */

.category-grid {

    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 13px;

    margin-top: 40px;

}


.category-card {

    padding: 22px 16px;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background: var(--white);

    text-align: center;

    text-decoration: none;

    transition: var(--transition);

}


.category-card:hover {

    transform: translateY(-4px);

    border-color: #bfdbfe;

    box-shadow: var(--shadow-sm);

}


.category-icon {

    width: 48px;

    height: 48px;

    display: grid;

    place-items: center;

    margin: auto;

    border-radius: 14px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 20px;

}


.category-card h3 {

    margin-top: 13px;

    font-size: 12px;

}


.category-card p {

    margin-top: 5px;

    color: var(--muted);

    font-size: 8px;

}


/* =========================================================
   FEATURE GRID
   ========================================================= */

.feature-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;

    margin-top: 40px;

}


.feature-card {

    padding: 25px;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background: var(--white);

}


.feature-icon {

    width: 46px;

    height: 46px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background: var(--primary-light);

    font-size: 18px;

}


.feature-card h3 {

    margin-top: 17px;

    font-size: 14px;

}


.feature-card p {

    margin-top: 8px;

    color: var(--muted);

    font-size: 9px;

    line-height: 1.75;

}


/* =========================================================
   FAQ
   ========================================================= */

.faq-list {

    max-width: 850px;

    margin: 35px auto 0;

}


.faq-item {

    border-bottom: 1px solid var(--border);

}


.faq-item summary {

    position: relative;

    padding: 21px 45px 21px 0;

    color: var(--dark);

    cursor: pointer;

    font-size: 11px;

    font-weight: 700;

    list-style: none;

}


.faq-item summary::-webkit-details-marker {

    display: none;

}


.faq-item summary::after {

    content: "+";

    position: absolute;

    top: 15px;

    right: 5px;

    color: var(--primary);

    font-size: 20px;

    font-weight: 400;

}


.faq-item[open] summary::after {

    content: "−";

}


.faq-item p {

    max-width: 780px;

    padding: 0 45px 22px 0;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.8;

}


/* =========================================================
   CHECK ORDER
   ========================================================= */

.order-check-section {

    padding: 90px 0;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(37,99,235,.09),
            transparent 40%
        ),
        var(--light);

}


.order-check-card {

    max-width: 650px;

    margin: auto;

    padding: 35px;

    border: 1px solid var(--border);

    border-radius: var(--radius-xl);

    background: var(--white);

    box-shadow: var(--shadow-md);

}


.order-check-card h1 {

    font-size: 32px;

    text-align: center;

}


.order-check-card > p {

    margin-top: 12px;

    color: var(--muted);

    font-size: 10px;

    text-align: center;

    line-height: 1.8;

}


.order-check-form {

    margin-top: 28px;

}


.order-check-form label {

    display: block;

    margin-bottom: 7px;

    color: var(--dark);

    font-size: 9px;

    font-weight: 700;

}


.order-check-form input {

    width: 100%;

    min-height: 48px;

    padding: 0 14px;

    border: 1px solid var(--border);

    border-radius: 10px;

    outline: none;

    font-size: 11px;

}


.order-check-form input:focus {

    border-color: var(--primary);

    box-shadow:
        0 0 0 3px
        rgba(37,99,235,.08);

}


.order-check-form button {

    width: 100%;

    margin-top: 12px;

}


/* =========================================================
   STATUS BOX
   ========================================================= */

.status-box {

    margin-top: 22px;

    padding: 20px;

    border-radius: var(--radius-md);

    background: var(--light);

}


.status-box.success {

    background: var(--success-bg);

    color: var(--success);

}


.status-box.warning {

    background: var(--warning-bg);

    color: var(--warning);

}


.status-box.error {

    background: var(--danger-bg);

    color: var(--danger);

}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-info-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;

    max-width: 1050px;

    margin: 45px auto 0;

}


.contact-info-card {

    padding: 28px;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background: var(--white);

    transition: var(--transition);

}


.contact-info-card:hover {

    transform: translateY(-4px);

    box-shadow: var(--shadow-md);

}


.contact-info-icon {

    width: 48px;

    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    background: var(--primary-light);

    font-size: 19px;

}


.contact-info-card h3 {

    margin-top: 17px;

    font-size: 15px;

}


.contact-info-card p {

    margin-top: 8px;

    color: var(--muted);

    font-size: 9px;

    line-height: 1.75;

}


.contact-info-card a {

    display: inline-block;

    margin-top: 17px;

    color: var(--primary);

    font-size: 9px;

    font-weight: 700;

    text-decoration: none;

}


/* =========================================================
   FORM
   ========================================================= */

.contact-form-wrapper {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 55px;

    max-width: 1050px;

    margin: auto;

}


.contact-form {

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: var(--radius-xl);

    background: var(--white);

    box-shadow: var(--shadow-sm);

}


.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

}


.form-group {

    margin-bottom: 17px;

}


.form-group label {

    display: block;

    margin-bottom: 7px;

    color: var(--dark);

    font-size: 9px;

    font-weight: 700;

}


.form-group label span {

    color: var(--muted);

    font-weight: 400;

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 13px 14px;

    border: 1px solid var(--border);

    border-radius: 10px;

    outline: none;

    background: var(--white);

    color: var(--dark);

    font-family: inherit;

    font-size: 10px;

    transition: var(--transition);

}


.form-group textarea {

    min-height: 130px;

    resize: vertical;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--primary);

    box-shadow:
        0 0 0 3px
        rgba(37,99,235,.08);

}


.form-submit {

    width: 100%;

    border: 0;

    cursor: pointer;

}


.form-disclaimer {

    margin-top: 12px;

    color: var(--muted);

    font-size: 8px;

    line-height: 1.6;

    text-align: center;

}


.form-success {

    margin-top: 15px;

    padding: 13px;

    border-radius: 10px;

    background: var(--success-bg);

    color: var(--success);

    font-size: 9px;

}


/* =========================================================
   QUICK HELP
   ========================================================= */

.quick-help-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;

    max-width: 1000px;

    margin: 40px auto 0;

}


.quick-help-card {

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 15px;

    padding: 20px;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background: var(--white);

    text-decoration: none;

    transition: var(--transition);

}


.quick-help-card:hover {

    transform: translateY(-3px);

    border-color: #bfdbfe;

    box-shadow: var(--shadow-sm);

}


.quick-help-card > span {

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: var(--primary-light);

}


.quick-help-card h3 {

    font-size: 12px;

}


.quick-help-card p {

    margin-top: 4px;

    color: var(--muted);

    font-size: 8px;

}


.quick-help-card b {

    color: var(--primary);

}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {

    padding: 75px 0;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1d4ed8
        );

}


.final-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

}


.final-cta .section-label {

    color: #bfdbfe;

}


.final-cta .section-label::before {

    background: #bfdbfe;

}


.final-cta h2 {

    margin-top: 8px;

    color: var(--white);

}


.final-cta p {

    max-width: 600px;

    margin-top: 10px;

    color: #dbeafe;

    font-size: 10px;

    line-height: 1.8;

}


.final-cta-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    flex-shrink: 0;

}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {

    padding: 65px 0 0;

    background: var(--dark);

    color: #cbd5e1;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        1fr
        1.2fr;

    gap: 45px;

    padding-bottom: 50px;

}


.footer-logo {

    color: var(--white);

}


.footer-brand > p {

    max-width: 320px;

    margin-top: 17px;

    color: #94a3b8;

    font-size: 9px;

    line-height: 1.8;

}


.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 9px;

}


.footer-column h3 {

    margin-bottom: 5px;

    color: var(--white);

    font-size: 11px;

}


.footer-column a {

    color: #94a3b8;

    font-size: 9px;

    text-decoration: none;

    transition: var(--transition);

}


.footer-column a:hover {

    color: var(--white);

}


.footer-column p {

    color: #94a3b8;

    font-size: 9px;

    line-height: 1.8;

}


.footer-bottom {

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255,255,255,.08);

}


.footer-bottom p {

    color: #64748b;

    font-size: 8px;

}


.footer-bottom-links {

    display: flex;

    gap: 18px;

}


.footer-bottom-links a {

    color: #64748b;

    font-size: 8px;

    text-decoration: none;

}


/* =========================================================
   UTILITY
   ========================================================= */

.text-center {
    text-align: center;
}


.mt-10 {
    margin-top: 10px;
}


.mt-20 {
    margin-top: 20px;
}


.mt-30 {
    margin-top: 30px;
}


.hidden {
    display: none !important;
}