/**
 * GutReset Landing Page B — tighter premium funnel
 *
 * Positioning: BAB lancar + tidur nyenyak, Tantangan 28 Hari.
 * Scoped under grv-* / body.grv-page to avoid collisions.
 */

:root {
    --grv-teal: #5BA8B8;
    --grv-teal-dark: #164552;
    --grv-teal-luminous: #49D1E1;
    --grv-teal-light: #EAF5F8;
    --grv-mint: #FAFAFA;
    --grv-green: #1E7A8F;
    --grv-green-soft: #EAF7F4;
    --grv-peach: #FFE5D6;
    --grv-peach-soft: #FFF2EA;
    --grv-coral: #FF6B4A;
    --grv-text: #164552;
    --grv-text-muted: #456A74;
    --grv-border: rgba(22, 69, 82, 0.08);
    --grv-white: #ffffff;
    --grv-cream: #FFF9F2;
    --grv-shadow-sm: 0 4px 14px rgba(22, 69, 82, 0.06);
    --grv-shadow-md: 0 12px 32px rgba(22, 69, 82, 0.10);
    --grv-shadow-lg: 0 24px 60px rgba(22, 69, 82, 0.14);
    --grv-radius-md: 24px;
    --grv-radius-lg: 32px;
    --grv-radius-xl: 48px;
    --grv-radius-2xl: 64px;
    --grv-standard-width: 1200px;
    --grv-transition: 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

body.grv-page {
    margin: 0;
    font-family: var(--bloom-font-family, "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    color: var(--grv-text);
    background: var(--grv-white);
    font-weight: 600;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.grv-page [class^="grv-"] {
    box-sizing: border-box;
}

body.grv-page [class^="grv-"] *,
body.grv-page [class^="grv-"] *::before,
body.grv-page [class^="grv-"] *::after {
    box-sizing: border-box;
}

@media (max-width: 991px) {
    body.grv-page .bloomlab-wa-widget {
        bottom: calc(var(--wa-offset, 20px) + 82px);
    }
}

.grv-container {
    width: 100%;
    max-width: var(--grv-standard-width);
    margin: 0 auto;
    padding-inline: var(--bloom-side-padding, clamp(20px, 4vw, 40px));
}

.grv-h1,
.grv-h2 {
    color: var(--grv-teal-dark);
    font-weight: 800;
    letter-spacing: -0.05em;
}

.grv-h1 {
    max-width: 680px;
    margin: 0 0 22px;
    font-size: clamp(3.05rem, 6vw, 4.25rem);
    line-height: 1.05;
}

.grv-h1 span,
.grv-h2 span {
    color: var(--grv-green);
}

.grv-h2 {
    max-width: 940px;
    margin: 0 auto 22px;
    font-size: clamp(2.45rem, 5vw, 3.8rem);
    line-height: 1.1;
    text-align: center;
}

.grv-lead {
    max-width: 520px;
    margin: 0 0 28px;
    color: var(--grv-text-muted);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
}

.grv-lead-small {
    max-width: 680px;
    margin: 0 auto;
    color: var(--grv-text);
    font-size: clamp(1.16rem, 1.5vw, 1.35rem);
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
}

.grv-section-head {
    max-width: 960px;
    margin: 0 auto 56px;
    text-align: center;
}

.grv-section-kicker,
.grv-eyebrow,
.grv-pkg-ribbon,
.grv-secondary-tag,
.grv-compare-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
}

.grv-section-kicker,
.grv-eyebrow {
    margin-bottom: 20px;
    padding: 9px 18px;
    background: var(--grv-teal-dark);
    color: var(--grv-white);
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

.grv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 18px 30px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.15;
    text-decoration: none;
    transition: transform 0.25s var(--grv-transition), box-shadow 0.3s var(--grv-transition), background 0.25s, border-color 0.25s;
}

.grv-btn svg {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
}

.grv-btn-primary {
    background: var(--grv-teal-dark);
    color: var(--grv-white);
    box-shadow: 0 12px 30px rgba(22, 69, 82, 0.24);
}

.grv-btn-primary:hover {
    background: var(--grv-green);
    color: var(--grv-white);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(22, 69, 82, 0.28);
}

.grv-btn-lg {
    min-height: 64px;
    padding: 20px 38px;
    font-size: 1.12rem;
}

.grv-btn-ghost {
    background: var(--grv-white);
    border-color: var(--grv-border);
    color: var(--grv-teal-dark);
}

.grv-btn-ghost:hover {
    border-color: var(--grv-teal);
    color: var(--grv-green);
    transform: translateY(-1px);
}

.grv-btn-ghost-white {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.42);
    color: var(--grv-white);
}

.grv-btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.86);
    color: var(--grv-white);
}

.grv-btn-wa {
    background: #25D366;
    color: var(--grv-white);
}

.grv-btn-wa svg {
    width: 18px;
    height: 18px;
}

.grv-btn-wa:hover {
    background: #1da851;
    color: var(--grv-white);
    transform: translateY(-1px);
}

.grv-hero {
    position: relative;
    overflow: hidden;
    padding: var(--bloom-hero-padding-top, 96px) var(--bloom-side-padding, clamp(20px, 4vw, 40px)) 96px;
    background: linear-gradient(180deg, var(--grv-mint) 0%, var(--grv-white) 100%);
}

.grv-hero::before {
    content: "";
    position: absolute;
    top: -18%;
    right: -10%;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 168, 184, 0.16), transparent 68%);
    pointer-events: none;
}

.grv-hero-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 64px;
    align-items: center;
    max-width: var(--grv-standard-width);
    margin: 0 auto;
}

.grv-trust-row,
.grv-hero-ctas,
.grv-jump-nav {
    display: flex;
    flex-wrap: wrap;
}

.grv-trust-row {
    gap: 12px;
    margin: 0 0 30px;
}

.grv-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 17px;
    border: 1px solid var(--grv-border);
    border-radius: 999px;
    background: var(--grv-white);
    color: var(--grv-text);
    font-size: 0.96rem;
    font-weight: 800;
    box-shadow: var(--grv-shadow-sm);
}

.grv-trust-pill svg {
    width: 16px;
    height: 16px;
    color: var(--grv-green);
}

.grv-hero-ctas {
    gap: 14px;
    margin: 0 0 24px;
}

.grv-jump-nav {
    gap: 8px 20px;
}

.grv-jump-nav a {
    position: relative;
    color: var(--grv-green);
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
}

.grv-jump-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.22;
}

.grv-hero-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 34px;
    border: 1px solid var(--grv-border);
    border-radius: var(--grv-radius-2xl);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--grv-shadow-lg);
}

.grv-hero-product {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    padding: 18px;
    border-radius: var(--grv-radius-xl);
    background: radial-gradient(circle at 50% 35%, rgba(91, 168, 184, 0.16), transparent 60%), var(--grv-mint);
}

.grv-hero-img {
    display: block;
    width: min(100%, 380px);
    height: auto;
    filter: drop-shadow(0 18px 32px rgba(22, 69, 82, 0.16));
}

.grv-benefits {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.grv-benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--grv-text);
    font-size: 1.08rem;
    font-weight: 800;
}

.grv-check,
.grv-card-icon,
.grv-step-num,
.grv-step-big,
.grv-guarantee-shield {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.grv-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--grv-green);
    color: var(--grv-white);
}

.grv-check svg {
    width: 15px;
    height: 15px;
}

.grv-guarantee-line {
    margin: 0;
    padding: 16px 18px;
    border-radius: var(--grv-radius-md);
    background: var(--grv-peach);
    color: var(--grv-text);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.55;
    text-align: center;
}

.grv-guarantee-line strong {
    color: var(--grv-coral);
    font-weight: 800;
}

.grv-mirror,
.grv-problem,
.grv-education,
.grv-product,
.grv-proof,
.grv-offer,
.grv-guarantee-section,
.grv-howto,
.grv-faq-section,
.grv-final-cta {
    padding: 96px 0;
}

.grv-mirror,
.grv-proof,
.grv-faq-section {
    background: var(--grv-white);
}

.grv-problem,
.grv-offer {
    background: var(--grv-cream);
}

.grv-education,
.grv-howto {
    background: var(--grv-mint);
}

.grv-product {
    background: var(--grv-white);
}

.grv-symptom-grid,
.grv-compare-grid,
.grv-secondary-grid,
.grv-howto-steps {
    display: grid;
}

.grv-symptom-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1040px;
    margin: 0 auto 34px;
    padding: 56px;
    border: 1px solid var(--grv-border);
    border-radius: var(--grv-radius-2xl);
    background: var(--grv-mint);
}

.grv-symptom-card,
.grv-compare-card,
.grv-secondary-card,
.grv-howto-steps li,
.grv-faq-item {
    border: 1px solid var(--grv-border);
    background: var(--grv-white);
    box-shadow: var(--grv-shadow-sm);
}

.grv-symptom-card {
    padding: 34px 28px;
    border-radius: var(--grv-radius-lg);
    text-align: center;
    transition: transform 0.3s var(--grv-transition), box-shadow 0.3s var(--grv-transition);
}

.grv-symptom-card:hover,
.grv-compare-card:hover,
.grv-secondary-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--grv-shadow-md);
}

.grv-symptom-card-wide {
    grid-column: span 1;
}

.grv-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: var(--grv-green-soft);
    color: var(--grv-green);
    font-size: 1.55rem;
    font-weight: 800;
}

.grv-card-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.45;
}

.grv-symptom-card:nth-child(2) .grv-card-icon {
    background: var(--grv-peach-soft);
    color: var(--grv-coral);
}

.grv-symptom-card h3,
.grv-howto-steps h3 {
    margin: 0 0 12px;
    color: var(--grv-teal-dark);
    font-size: 1.32rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.grv-symptom-card p,
.grv-howto-steps p,
.grv-compare-card p,
.grv-pkg-desc,
.grv-faq-item p {
    margin: 0;
    color: var(--grv-text-muted);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.58;
}

.grv-mirror-footer {
    max-width: 680px;
    margin: 0 auto;
    color: var(--grv-text);
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}

.grv-mirror-footer strong {
    color: var(--grv-teal-dark);
}

.grv-feature-figure,
.grv-analogy-figure,
.grv-journey-figure {
    max-width: 920px;
    margin: 0 auto;
    padding: 0;
}

.grv-feature-figure,
.grv-analogy-figure,
.grv-journey-figure {
    max-width: 980px;
    margin-top: 42px;
}

.grv-analogy-figure {
    max-width: 1080px;
}

.grv-feature-figure img,
.grv-analogy-figure img,
.grv-journey-figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--grv-radius-xl);
    background: var(--grv-cream);
    box-shadow: var(--grv-shadow-md);
}

.grv-compare-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    max-width: 1000px;
    margin: 0 auto;
}

.grv-compare-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 34px 28px;
    border-radius: var(--grv-radius-lg);
    text-align: center;
    transition: transform 0.3s var(--grv-transition), box-shadow 0.3s var(--grv-transition);
}

.grv-compare-dim {
    background: #F3F6F6;
}

.grv-compare-win {
    border: 0;
    background: linear-gradient(150deg, var(--grv-teal) 0%, var(--grv-teal-dark) 100%);
    color: var(--grv-white);
    box-shadow: var(--grv-shadow-md);
}

.grv-compare-card .grv-card-icon {
    margin-bottom: 18px;
}

.grv-compare-win .grv-card-icon {
    background: rgba(255, 255, 255, 0.18);
    color: var(--grv-white);
}

.grv-compare-tag {
    margin-bottom: 14px;
    padding: 7px 13px;
    background: rgba(22, 69, 82, 0.08);
    color: var(--grv-teal-dark);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.grv-compare-win .grv-compare-tag {
    background: rgba(255, 255, 255, 0.18);
    color: var(--grv-white);
}

.grv-compare-win p {
    color: rgba(255, 255, 255, 0.92);
}

.grv-compare-card p {
    margin-bottom: 18px;
}

.grv-medicine-badge {
    display: inline-flex;
    margin-top: auto;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(22, 69, 82, 0.08);
    color: var(--grv-teal-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.grv-win-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--grv-white);
    color: var(--grv-teal-dark);
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

.grv-win-badge:hover,
.grv-win-badge:focus {
    color: var(--grv-teal-dark);
    transform: translateY(-1px);
}

.grv-badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.grv-badge-chip {
    padding: 13px 22px;
    border: 1px solid var(--grv-border);
    border-radius: 999px;
    background: var(--grv-white);
    color: var(--grv-teal-dark);
    font-size: 1rem;
    font-weight: 800;
    box-shadow: var(--grv-shadow-sm);
}

.grv-proof .grv-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grv-tabs {
    display: inline-flex;
    gap: 10px;
    margin: 0 auto 34px;
    padding: 10px;
    border-radius: 999px;
    background: var(--grv-mint);
}

.grv-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--grv-text-muted);
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}

.grv-tab.is-active {
    background: var(--grv-teal-dark);
    color: var(--grv-white);
    box-shadow: 0 6px 16px rgba(22, 69, 82, 0.22);
}

.grv-tab:hover:not(.is-active) {
    color: var(--grv-teal-dark);
}

.grv-tab-emoji {
    font-size: 1.05rem;
    line-height: 1;
}

.grv-tab-panel {
    width: 100%;
    max-width: var(--grv-standard-width);
}

.grv-tab-panel[hidden] {
    display: none;
}

.grv-testi-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 8px var(--bloom-side-padding, clamp(20px, 4vw, 40px)) 28px;
    margin-inline: calc(var(--bloom-side-padding, clamp(20px, 4vw, 40px)) * -1);
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.grv-testi-card {
    flex: 0 0 clamp(240px, 22vw, 318px);
    overflow: hidden;
    border-radius: var(--grv-radius-lg);
    background: var(--grv-mint);
    box-shadow: var(--grv-shadow-md);
    scroll-snap-align: center;
    aspect-ratio: 3 / 4;
    transition: transform 0.35s var(--grv-transition), box-shadow 0.35s var(--grv-transition);
}

.grv-testi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--grv-shadow-lg);
}

.grv-testi-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grv-proof-bar {
    margin: 18px auto 0;
    padding: 16px 30px;
    border-radius: 999px;
    background: var(--grv-mint);
    color: var(--grv-teal-dark);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.grv-proof-bar strong {
    color: var(--grv-green);
    font-weight: 800;
}

.grv-hero-package {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 44px;
    align-items: center;
    max-width: 1040px;
    margin: 44px auto 44px;
    padding: 46px;
    overflow: hidden;
    border: 2px solid var(--grv-green);
    border-radius: var(--grv-radius-2xl);
    background: var(--grv-white);
    box-shadow: var(--grv-shadow-lg);
}

.grv-hero-package::before {
    content: "";
    position: absolute;
    top: -18%;
    right: -12%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(91, 168, 184, 0.12);
    pointer-events: none;
}

.grv-hero-package-left,
.grv-hero-package-right {
    position: relative;
    z-index: 1;
}

.grv-pkg-ribbon {
    margin-bottom: 16px;
    padding: 8px 16px;
    background: var(--grv-green);
    color: var(--grv-white);
    font-size: 0.9rem;
}

.grv-pkg-title {
    margin: 0 0 10px;
    color: var(--grv-teal-dark);
    font-size: clamp(2rem, 3vw, 2.55rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.grv-pkg-title span {
    color: var(--grv-text-muted);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0;
}

.grv-pkg-price {
    margin-bottom: 12px;
    color: var(--grv-green);
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.grv-pkg-desc {
    max-width: 420px;
    margin-bottom: 28px;
    color: var(--grv-text);
    font-size: 1.1rem;
}

.grv-hero-package-right {
    display: flex;
    justify-content: center;
}

.grv-hero-package-right img {
    width: min(100%, 360px);
    height: auto;
    border-radius: var(--grv-radius-lg);
    filter: drop-shadow(0 18px 30px rgba(22, 69, 82, 0.12));
}

.grv-secondary-heading {
    position: relative;
    margin: 0 0 28px;
    color: var(--grv-text-muted);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}

.grv-secondary-heading::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 1px;
    background: var(--grv-border);
}

.grv-secondary-heading span {
    position: relative;
    z-index: 1;
    padding: 0 16px;
    background: var(--grv-cream);
}

.grv-secondary-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    max-width: 1040px;
    margin: 0 auto;
}

.grv-secondary-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    padding: 26px 22px;
    border-radius: var(--grv-radius-lg);
    color: var(--grv-text);
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s var(--grv-transition), box-shadow 0.3s var(--grv-transition), border-color 0.3s;
}

.grv-secondary-card img {
    width: min(100%, 190px);
    aspect-ratio: 1;
    height: auto;
    object-fit: contain;
    border-radius: var(--grv-radius-md);
    background: var(--grv-mint);
}

.grv-secondary-best {
    border-color: rgba(30, 122, 143, 0.42);
}

.grv-secondary-tag {
    padding: 5px 11px;
    background: var(--grv-green-soft);
    color: var(--grv-green);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.grv-secondary-best .grv-secondary-tag {
    background: var(--grv-green);
    color: var(--grv-white);
}

.grv-secondary-card h4 {
    margin: 0;
    color: var(--grv-teal-dark);
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.15;
}

.grv-secondary-price {
    color: var(--grv-text);
    font-size: 1.02rem;
    font-weight: 800;
}

.grv-guarantee-section {
    background: var(--grv-teal-dark);
    color: var(--grv-white);
}

.grv-guarantee {
    max-width: 860px;
    margin: 0 auto;
    padding: 54px 46px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--grv-radius-2xl);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.16);
    text-align: center;
}

.grv-guarantee-shield {
    width: 78px;
    height: 78px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--grv-white);
    color: var(--grv-green);
}

.grv-guarantee-shield svg {
    width: 42px;
    height: 42px;
}

.grv-guarantee-title {
    margin: 0 0 30px;
    color: var(--grv-white);
    font-size: clamp(1.8rem, 3.5vw, 2.55rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.grv-steps {
    display: grid;
    gap: 14px;
    max-width: 610px;
    margin: 0 auto 26px;
    padding: 0;
    list-style: none;
    text-align: left;
}

.grv-steps li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 17px 20px;
    border-radius: var(--grv-radius-md);
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.58;
}

.grv-step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--grv-white);
    color: var(--grv-teal-dark);
    font-size: 0.95rem;
    font-weight: 800;
}

.grv-guarantee-bold {
    margin: 0 0 24px;
    color: var(--grv-white);
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.55;
}

.grv-howto-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    max-width: 980px;
    margin: 0 auto 26px;
    padding: 0;
    list-style: none;
}

.grv-howto-steps li {
    position: relative;
    padding: 38px 28px;
    border-radius: var(--grv-radius-lg);
    text-align: center;
}

.grv-step-big {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--grv-green);
    color: var(--grv-white);
    font-size: 1.55rem;
    font-weight: 800;
}

.grv-howto-footer {
    margin: 0;
    color: var(--grv-text);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}

.grv-howto-footer strong {
    color: var(--grv-teal-dark);
    font-weight: 800;
}

.grv-faq-list {
    display: grid;
    gap: 14px;
    max-width: 840px;
    margin: 0 auto;
}

.grv-faq-item {
    padding: 0;
    overflow: hidden;
    border-radius: var(--grv-radius-md);
    transition: border-color 0.25s, box-shadow 0.25s, background-color 0.25s;
}

.grv-faq-item[open] {
    border-color: rgba(30, 122, 143, 0.34);
    box-shadow: var(--grv-shadow-md);
}

.grv-faq-item summary {
    position: relative;
    padding: 26px 68px 26px 30px;
    color: var(--grv-teal-dark);
    cursor: pointer;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.35;
    list-style: none;
    user-select: none;
}

.grv-faq-item summary::-webkit-details-marker {
    display: none;
}

.grv-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    color: var(--grv-green);
    font-size: 1.65rem;
    font-weight: 500;
    line-height: 1;
}

.grv-faq-item[open] summary::after {
    content: "–";
}

.grv-faq-item p {
    margin: 0 30px 28px;
    padding-top: 18px;
    border-top: 1px solid var(--grv-border);
}

.grv-final-cta {
    background: linear-gradient(150deg, var(--grv-teal) 0%, var(--grv-teal-dark) 100%);
    color: var(--grv-white);
    text-align: center;
}

.grv-final-cta .grv-h2 {
    color: var(--grv-white);
}

.grv-final-cta .grv-h2 span {
    color: var(--grv-peach);
}

.grv-final-cta .grv-lead-small {
    color: rgba(255, 255, 255, 0.9);
}

.grv-final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

.grv-sticky-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 78px;
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: var(--grv-teal-dark);
    color: var(--grv-white);
    box-shadow: 0 -10px 26px rgba(22, 69, 82, 0.22);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.grv-sticky-bar.is-visible {
    transform: translateY(0);
}

.grv-sticky-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.2;
}

.grv-sticky-copy strong {
    font-size: 1rem;
    font-weight: 800;
}

.grv-sticky-copy span {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.88;
}

.grv-sticky-btn {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 6px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--grv-green);
    color: var(--grv-white);
    font-size: 0.98rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(58, 150, 168, 0.36);
}

.grv-sticky-btn:hover {
    background: #2E7A8A;
    color: var(--grv-white);
}

.grv-sticky-btn svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 991px) {
    body.grv-page {
        padding-bottom: calc(94px + env(safe-area-inset-bottom));
    }

    .grv-sticky-bar {
        display: flex;
    }

    .grv-hero {
        padding: var(--bloom-hero-padding-top-mobile, 68px) 0 72px;
    }

    .grv-hero-wrap {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .grv-hero-content {
        order: 1;
        text-align: center;
    }

    .grv-hero-card {
        order: 2;
        max-width: 560px;
        margin: 0 auto;
    }

    .grv-h1 {
        max-width: 720px;
        margin-right: auto;
        margin-left: auto;
        font-size: clamp(2.75rem, 8vw, 3.5rem);
        line-height: 1.05;
    }

    .grv-h2 {
        font-size: var(--bloom-font-h2-mobile, 2.55rem);
        line-height: 1.1;
    }

    .grv-lead {
        max-width: 620px;
        margin-right: auto;
        margin-left: auto;
        font-size: var(--bloom-font-lead-mobile, 1.16rem);
    }

    .grv-trust-row,
    .grv-hero-ctas,
    .grv-jump-nav {
        justify-content: center;
    }

    .grv-hero-ctas {
        flex-direction: column;
        align-items: stretch;
        max-width: 520px;
        margin-right: auto;
        margin-left: auto;
    }

    .grv-mirror,
    .grv-problem,
    .grv-education,
    .grv-product,
    .grv-proof,
    .grv-offer,
    .grv-guarantee-section,
    .grv-howto,
    .grv-faq-section,
    .grv-final-cta {
        padding: 74px 0;
    }

    .grv-symptom-grid,
    .grv-compare-grid,
    .grv-secondary-grid,
    .grv-howto-steps,
    .grv-hero-package {
        grid-template-columns: 1fr;
    }

    .grv-symptom-grid {
        padding: 34px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 720px;
    }

    .grv-symptom-card-wide {
        grid-column: auto;
    }

    .grv-secondary-grid {
        max-width: 620px;
        margin-right: auto;
        margin-left: auto;
    }

    .grv-hero-package {
        max-width: 620px;
        padding: 34px 28px;
        text-align: center;
    }

    .grv-hero-package-right {
        order: -1;
    }

    .grv-pkg-desc {
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 600px) {
    .grv-container {
        padding-inline: max(19px, var(--bloom-side-padding, 20px));
    }

    .grv-h1 {
        font-size: 2.55rem;
        letter-spacing: -0.045em;
    }

    .grv-h2 {
        font-size: 2.2rem;
        margin-bottom: 18px;
        letter-spacing: -0.045em;
    }

    .grv-lead {
        font-size: 1.08rem;
        line-height: 1.58;
    }

    .grv-lead-small {
        font-size: 1.08rem;
        line-height: 1.6;
    }

    .grv-section-head {
        margin-bottom: 40px;
    }

    .grv-mirror,
    .grv-problem,
    .grv-education,
    .grv-product,
    .grv-proof,
    .grv-offer,
    .grv-guarantee-section,
    .grv-howto,
    .grv-faq-section,
    .grv-final-cta {
        padding: 68px 0;
    }

    .grv-hero-product {
        min-height: 260px;
    }

    .grv-hero-img {
        width: min(100%, 255px);
    }

    .grv-trust-pill {
        padding: 8px 13px;
        font-size: 0.88rem;
    }

    .grv-jump-nav {
        gap: 8px 15px;
    }

    .grv-jump-nav a {
        font-size: 0.84rem;
    }

    .grv-btn {
        min-height: 54px;
        padding: 15px 22px;
        font-size: 0.98rem;
    }

    .grv-symptom-grid {
        display: flex;
        gap: 14px;
        margin: 0 calc(var(--bloom-side-padding, 20px) * -1) 28px;
        padding: 4px var(--bloom-side-padding, 20px) 22px;
        overflow-x: auto;
        border: 0;
        border-radius: 0;
        background: transparent;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .grv-symptom-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
    }

    .grv-symptom-card,
    .grv-compare-card,
    .grv-howto-steps li {
        padding: 28px 22px;
    }

    .grv-symptom-card h3,
    .grv-howto-steps h3 {
        font-size: 1.22rem;
    }

    .grv-symptom-card p,
    .grv-howto-steps p,
    .grv-compare-card p,
    .grv-pkg-desc,
    .grv-faq-item p {
        font-size: 1rem;
    }

    .grv-card-icon,
    .grv-step-big {
        width: 58px;
        height: 58px;
    }

    .grv-feature-figure,
    .grv-analogy-figure,
    .grv-journey-figure {
        margin-top: 30px;
    }

    .grv-feature-figure img,
    .grv-analogy-figure img,
    .grv-journey-figure img {
        border-radius: 28px;
    }

    .grv-badge-chip {
        width: 100%;
        max-width: 340px;
        text-align: center;
    }

    .grv-tabs {
        width: 100%;
        gap: 8px;
        padding: 8px;
        border-radius: 24px;
    }

    .grv-tab {
        flex: 1;
        padding: 11px 9px;
        font-size: 0.9rem;
        line-height: 1.25;
    }

    .grv-testi-grid {
        gap: 14px;
        padding-bottom: 22px;
    }

    .grv-testi-card {
        flex-basis: 280px;
    }

    .grv-hero-package {
        padding: 28px 22px;
        border-radius: var(--grv-radius-xl);
    }

    .grv-hero-package-right img {
        width: min(100%, 285px);
    }

    .grv-secondary-card img {
        width: min(100%, 225px);
    }

    .grv-guarantee {
        padding: 38px 24px;
        border-radius: var(--grv-radius-xl);
    }

    .grv-steps li {
        padding: 16px;
        font-size: 1rem;
    }

    .grv-faq-item summary {
        padding: 22px 58px 22px 22px;
        font-size: 1rem;
    }

    .grv-faq-item summary::after {
        right: 22px;
    }

    .grv-faq-item p {
        margin: 0 22px 24px;
    }

    .grv-final-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .grv-sticky-copy strong {
        font-size: 0.94rem;
    }

    .grv-sticky-copy span {
        font-size: 0.78rem;
    }

    .grv-sticky-btn {
        padding: 10px 13px;
        font-size: 0.9rem;
    }
}

@media (max-width: 380px) {
    .grv-container {
        padding-inline: 16px;
    }

    .grv-h1 {
        font-size: 2.3rem;
    }

    .grv-h2 {
        font-size: 2.2rem;
    }

    .grv-trust-row {
        gap: 8px;
    }

    .grv-tabs {
        gap: 6px;
        padding: 6px;
    }

    .grv-tab {
        font-size: 0.84rem;
        gap: 5px;
    }

    .grv-symptom-grid,
    .grv-testi-grid {
        margin-right: -16px;
        margin-left: -16px;
        padding-right: 16px;
        padding-left: 16px;
    }

    .grv-symptom-card {
        flex-basis: 260px;
    }
}
