/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue: #1a6fd4;
    --blue-dark: #1257b0;
    --blue-light: #dceeff;
    --blue-pale: #eef6ff;
    --green: #17a34a;
    --green-light: #dcfce7;
    --orange: #ea580c;
    --orange-light: #ffedd5;
    --teal: #0d9488;
    --teal-light: #ccfbf1;
    --yellow: #fbbf24;
    --yellow-light: #fef9c3;
    --red: #dc2626;
    --text: #1a1a2e;
    --text-2: #475569;
    --text-3: #94a3b8;
    --bg: #f0f9ff;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --r: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-pill: 100px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== TOPBAR ===== */
.topbar {
    background: var(--blue-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    flex-wrap: wrap;
    text-align: center;
}

.topbar-btn {
    background: var(--yellow);
    color: var(--text);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.3rem 1rem;
    border-radius: var(--r-pill);
    white-space: nowrap;
    transition: transform 0.2s;
}

.topbar-btn:hover {
    transform: scale(1.05);
}

/* ===== BUTTONS ===== */
.btn-main {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    padding: 1rem 2.5rem;
    border-radius: var(--r-pill);
    border: 3px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 6px 0 #0f7a38, 0 8px 20px rgba(23, 163, 74, 0.3);
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #0f7a38, 0 12px 28px rgba(23, 163, 74, 0.35);
}

.btn-main:active {
    transform: translateY(3px);
    box-shadow: 0 2px 0 #0f7a38;
}

.btn-large {
    font-size: 1.25rem;
    padding: 1.2rem 3rem;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(180deg, var(--blue-pale) 0%, #dbeafe 100%);
    padding: 3.5rem 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(26, 111, 212, 0.12) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    color: var(--blue);
    font-weight: 800;
    font-size: 0.9rem;
    padding: 0.45rem 1.25rem;
    border-radius: var(--r-pill);
    border: 2px solid var(--blue-light);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.hero-h1 {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.highlight {
    color: var(--green);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--yellow);
    border-radius: 3px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-2);
    max-width: 560px;
    margin: 0 auto 2rem;
}

.hero-pills {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

.hero-pills span {
    background: var(--white);
    color: var(--blue);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.4rem 1rem;
    border-radius: var(--r-pill);
    border: 2px solid var(--blue-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Module strip */
.module-strip {
    background: linear-gradient(135deg, #1a5fa8 0%, #1a9470 100%);
    padding: 2.5rem 0 1.5rem;
    margin-top: 0;
    clip-path: ellipse(110% 100% at 50% 0%);
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mod-card {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--r);
    padding: 1.25rem 1rem;
    text-align: center;
    color: #fff;
    backdrop-filter: blur(4px);
    transition: transform 0.2s, background 0.2s;
}

.mod-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.22);
}

.mod-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.mod-card strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.mod-card span {
    font-size: 0.8rem;
    opacity: 0.85;
}

.all-in-one-banner {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 1.3rem;
    text-align: center;
    padding: 0.75rem 2rem;
    border-radius: var(--r-pill);
    display: inline-block;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 0 #991b1b, 0 6px 20px rgba(220, 38, 38, 0.35);
    margin: 0 auto;
    display: block;
    max-width: 340px;
}

/* ===== STATS ===== */
.stats {
    background: var(--white);
    padding: 2.5rem 0;
    border-bottom: 2px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat-box {
    padding: 1.25rem;
    border-radius: var(--r);
    background: var(--bg);
    border: 2px solid var(--border);
}

.stat-box strong {
    display: block;
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1.2;
}

.stat-box span {
    font-size: 0.88rem;
    color: var(--text-2);
    font-weight: 600;
}

/* ===== SECTION COMMON ===== */
.section-badge {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue-dark);
    font-weight: 800;
    font-size: 0.88rem;
    padding: 0.4rem 1.1rem;
    border-radius: var(--r-pill);
    margin-bottom: 1rem;
    border: 2px solid rgba(26, 111, 212, 0.2);
}

.badge-white {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.section-h2 {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.section-h2.white {
    color: #fff;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-2);
    margin-bottom: 2.5rem;
}

.underline-green {
    color: var(--green);
    text-decoration: underline;
    text-decoration-color: var(--yellow);
    text-underline-offset: 5px;
    text-decoration-thickness: 4px;
}

.underline-blue {
    color: var(--blue);
    text-decoration: underline;
    text-decoration-color: var(--yellow);
    text-underline-offset: 5px;
    text-decoration-thickness: 4px;
}

.underline-orange {
    color: var(--orange);
    text-decoration: underline;
    text-decoration-color: var(--yellow);
    text-underline-offset: 5px;
    text-decoration-thickness: 4px;
}

.highlight-yellow {
    color: var(--yellow);
}

/* ===== PROBLEM ===== */
.problem {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.prob-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: left;
    margin-bottom: 2.5rem;
}

.prob-card {
    background: var(--bg);
    border: 2.5px solid var(--border);
    border-radius: var(--r);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.2s;
}

.prob-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.prob-card:hover {
    box-shadow: var(--shadow);
}

.prob-emoji {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.prob-card p {
    font-size: 1rem;
    color: var(--text-2);
    font-weight: 600;
    line-height: 1.5;
}

.prob-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.arrow-line {
    font-size: 2rem;
    color: var(--green);
    animation: bounce 1.5s ease-in-out infinite;
}

.prob-arrow p {
    font-size: 1rem;
    color: var(--text-2);
    font-weight: 700;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ===== FEATURES ===== */
.features {
    padding: 5rem 0;
    background: var(--bg);
    text-align: center;
}

.feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    margin-bottom: 1.75rem;
    text-align: left;
}

.feat-card {
    border-radius: var(--r-lg);
    padding: 1.75rem;
    border: 3px solid transparent;
    position: relative;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.2s;
}

.feat-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.feat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px) !important;
}

.feat-big {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
}

.feat-col {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feat-wide {
    grid-column: 3;
    grid-row: 1 / 3;
}

.feat-blue {
    background: var(--blue-pale);
    border-color: var(--blue-light);
}

.feat-green {
    background: var(--green-light);
    border-color: #bbf7d0;
}

.feat-orange {
    background: var(--orange-light);
    border-color: #fed7aa;
}

.feat-teal {
    background: var(--teal-light);
    border-color: #99f6e4;
}

.feat-num {
    font-family: 'Baloo 2', cursive;
    font-size: 2.5rem;
    font-weight: 800;
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    line-height: 1;
}

.feat-icon-big {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feat-icon-sm {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.feat-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.feat-card p {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.feat-tag {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.3rem 0.9rem;
    border-radius: var(--r-pill);
    letter-spacing: 0.04em;
    margin-top: auto;
}

.teal-tag {
    background: var(--teal);
}

.feat-extras {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.extra-pill {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--r-pill);
    padding: 0.55rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.testi-card {
    background: var(--bg);
    border: 2.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    text-align: left;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.2s;
}

.testi-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.testi-card:hover {
    box-shadow: var(--shadow);
}

.testi-featured {
    background: linear-gradient(135deg, var(--blue) 0%, #1a5fa8 100%);
    border-color: var(--blue);
}

.testi-featured .testi-stars {
    color: var(--yellow) !important;
}

.testi-featured p {
    color: rgba(255, 255, 255, 0.92) !important;
}

.testi-featured .testi-author strong {
    color: #fff !important;
}

.testi-featured .testi-author span {
    color: rgba(255, 255, 255, 0.7) !important;
}

.testi-stars {
    color: var(--yellow);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 0.9rem;
}

.testi-card>p {
    font-size: 0.97rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testi-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.av-blue {
    background: var(--blue-light);
    color: var(--blue);
}

.av-green {
    background: var(--green-light);
    color: var(--green);
}

.av-white {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.testi-author strong {
    font-size: 0.95rem;
    color: var(--text);
    display: block;
    line-height: 1.2;
}

.testi-author span {
    font-size: 0.8rem;
    color: var(--text-3);
}

/* ===== HOW IT WORKS ===== */
.how {
    padding: 5rem 0;
    background: var(--bg);
    text-align: center;
}

.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.step-card {
    max-width: 240px;
    text-align: center;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.step-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.step-bubble {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
}

.step-1 {
    background: var(--blue);
    box-shadow: 0 4px 0 #1257b0;
}

.step-2 {
    background: var(--green);
    box-shadow: 0 4px 0 #0f7a38;
}

.step-3 {
    background: var(--orange);
    box-shadow: 0 4px 0 #c2410c;
}

.step-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.92rem;
    color: var(--text-2);
    line-height: 1.6;
}

.step-arrow {
    font-size: 1.8rem;
    color: var(--text-3);
    margin-top: 22px;
    flex-shrink: 0;
    padding: 0 0.5rem;
}

/* ===== PRICING ===== */
.pricing {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--blue) 0%, #1a5fa8 50%, #0d7a56 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    pointer-events: none;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    text-align: left;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.price-label {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.35rem 1rem;
    border-radius: var(--r-pill);
    margin-bottom: 1.25rem;
    border: 2px solid #bbf7d0;
}

.price-big {
    display: flex;
    align-items: flex-start;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.price-rm {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--green);
    margin-top: 0.75rem;
}

.price-num {
    font-family: 'Baloo 2', cursive;
    font-size: 6rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    letter-spacing: -0.03em;
}

.price-desc {
    font-size: 0.97rem;
    color: var(--text-2);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-buy {
    display: block;
    background: var(--green);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 1rem 1.5rem;
    border-radius: var(--r-pill);
    text-align: center;
    border: 3px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 0 #0f7a38;
    transition: transform 0.15s, box-shadow 0.15s;
    margin-bottom: 1rem;
    cursor: pointer;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 0 #0f7a38;
}

.btn-buy:active {
    transform: translateY(3px);
    box-shadow: 0 1px 0 #0f7a38;
}

.price-note {
    font-size: 0.88rem;
    color: var(--text-3);
    font-style: italic;
}

.pricing-divider {
    width: 1px;
    background: var(--border);
}

.includes-title {
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1.1rem;
    font-size: 1rem;
}

.includes-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.includes-list li {
    font-size: 0.97rem;
    color: var(--text-2);
    font-weight: 600;
    padding-bottom: 0.65rem;
    border-bottom: 1.5px solid var(--border);
}

.includes-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ===== FAQ ===== */
.faq {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.faq-wrap {
    max-width: 680px;
}

.faq-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.faq-item {
    border: 2.5px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.active {
    border-color: var(--blue);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.4rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    text-align: left;
    gap: 1rem;
    transition: background 0.2s;
}

.faq-q:hover {
    background: var(--bg);
}

.faq-item.active .faq-q {
    background: var(--blue-pale);
    color: var(--blue);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-3);
    flex-shrink: 0;
    transition: transform 0.2s, color 0.2s;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--blue);
}

.faq-ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease;
}

.faq-item.active .faq-ans {
    max-height: 200px;
}

.faq-ans p {
    padding: 0.25rem 1.4rem 1.2rem;
    font-size: 0.97rem;
    color: var(--text-2);
    line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a3a6e 0%, #0d5c3a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    pointer-events: none;
}

.final-inner {
    position: relative;
    z-index: 1;
}

.final-emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.final-cta h2 {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
}

.final-sub {
    margin-top: 1.25rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

/* ===== STICKY ===== */
.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 200;
    transition: opacity 0.3s;
}

.sticky-btn {
    display: block;
    background: var(--green);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.85rem 1.6rem;
    border-radius: var(--r-pill);
    border: 3px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 0 #0f7a38, 0 8px 24px rgba(23, 163, 74, 0.4);
    transition: transform 0.15s, box-shadow 0.15s;
    white-space: nowrap;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 0 #0f7a38, 0 12px 28px rgba(23, 163, 74, 0.45);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 880px) {
    .module-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .feat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feat-big {
        grid-column: 1;
        grid-row: auto;
    }

    .feat-col {
        grid-column: 2;
        grid-row: auto;
    }

    .feat-wide {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .testi-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card {
        grid-template-columns: 1fr;
    }

    .pricing-divider {
        width: 100%;
        height: 1px;
    }

    .steps-row {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
}

@media (max-width: 600px) {
    .hero-h1 {
        font-size: 1.9rem;
    }

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

    .prob-grid {
        grid-template-columns: 1fr;
    }

    .feat-grid {
        grid-template-columns: 1fr;
    }

    .feat-big,
    .feat-col,
    .feat-wide {
        grid-column: 1;
        grid-row: auto;
    }

    .feat-col {
        display: contents;
    }

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

    .sticky-cta {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .sticky-btn {
        text-align: center;
        border-radius: var(--r);
    }

    .pricing-card {
        padding: 1.75rem 1.25rem;
    }
}

/* bermula guna css sendiri */
/* bermula guna css sendiri */
/* bermula guna css sendiri */

/* Paragraph */
.hero p {
    transform: translatex(0px) translatey(0px);
    font-size: 19px;
}

/* Link */
.hero a {
    font-weight: 500;
}

/* Span Tag */
.hero .hero-pills span {
    font-weight: 400;
    font-size: 16px;
}

/* Extra pill */
#features .feat-extras .extra-pill {
    font-size: 16px;
    font-weight: 400;
}

/* Hero badge */
.hero .hero-badge {
    font-weight: 400;
    font-size: 16px;
}

/* Section badge */
.problem .section-badge {
    font-weight: 400;
    font-size: 16px;
}

/* Section badge */
#features .section-badge {
    font-weight: 400;
    font-size: 16px;
}

/* Section badge */
#pricing .section-badge {
    font-weight: 400;
    font-size: 16px;
}

/* Section badge */
.faq .faq-wrap .section-badge {
    font-weight: 400;
    font-size: 16px;
}

/* Price label */
.pricing-card .pricing-left .price-label {
    font-size: 16px;
    font-weight: 400;
}

/* Link */
.topbar a {
    font-weight: 400;
    font-size: 16px;
}

/* Span Tag */
.topbar span {
    font-size: 16px;
    font-weight: 400;
}

/* Span Tag */
.stats-grid .stat-box span {
    font-weight: 400;
    font-size: 18px;
}

/* Span Tag */
.module-grid .mod-card span {
    font-size: 18px;
}

/* Strong Tag */
.module-grid .mod-card strong {
    font-size: 20px;
    font-weight: 500;
}

/* Section badge */
.how .section-badge {
    font-weight: 400;
    font-size: 16px;
}

/* Section badge */
.testimonials .section-badge {
    font-weight: 400;
    font-size: 16px;
}

/* Section sub */
.problem .section-sub {
    font-size: 19px;
}

/* Paragraph */
.problem .prob-arrow p {
    font-weight: 400;
    font-size: 19px;
}

/* Paragraph */
.prob-grid .prob-card p {
    font-weight: 400;
    font-size: 19px;
}

/* Paragraph */
.feat-grid .feat-big p {
    font-size: 19px;
}

/* Paragraph */
.feat-col .feat-card p {
    font-size: 19px;
}

/* Paragraph */
.feat-grid .feat-teal p {
    font-size: 19px;
}

/* Features */
#features {
    transform: translatex(0px) translatey(0px);
}

/* Heading */
.feat-grid .feat-teal h3 {
    font-weight: 500;
    font-size: 19px;
}

/* Heading */
.feat-col .feat-card h3 {
    font-weight: 500;
    font-size: 19px;
}

/* Heading */
.feat-grid .feat-big h3 {
    font-weight: 500;
    font-size: 19px;
}

/* Feat tag */
.feat-grid .feat-teal .feat-tag {
    font-weight: 400;
    font-size: 16px;
}

/* Feat tag */
.feat-grid .feat-big .feat-tag {
    font-weight: 400;
    font-size: 16px;
}

/* Paragraph */
.testi-grid .testi-card p {
    font-size: 19px;
}

/* Strong Tag */
.testi-grid div strong {
    font-weight: 500;
    font-size: 17px;
}

/* Span Tag */
.testi-grid div span {
    font-size: 15px;
}

/* Paragraph */
.how .step-card p {
    font-size: 19px;
}

/* Heading */
.how .step-card h4 {
    font-weight: 500;
    font-size: 19px;
}

/* List Item */
.pricing-right .includes-list li {
    font-weight: 400;
    font-size: 19px;
}

/* Paragraph */
.pricing-card .pricing-right p {
    font-weight: 500;
    font-size: 19px;
}

/* Price desc */
.pricing-card .pricing-left .price-desc {
    font-size: 19px;
}

/* Link */
.pricing-card .pricing-left a {
    font-weight: 500;
}

/* Span Tag */
.faq-list .faq-q span {
    font-size: 19px;
    font-weight: 400;
}

/* Paragraph */
.faq-list .faq-ans p {
    font-size: 19px;
}

/* Paragraph */
.final-cta p {
    font-size: 19px;
}

@media (max-width:880px) {

    /* Step card */
    .how .step-card {
        max-width: 403px;
    }

}

@media (max-width:600px) {

    /* Step card */
    .how .step-card {
        max-width: 762px;
    }

}