/* Diarev by Dr. Soumya palette — maroon, blush, green + Poppins / Original Surfer */

:root {
    --primary: #A12637;
    --primary-light: #C94A59;
    --primary-dark: #721522;
    --secondary: #1e73be;
    --accent: #A12637;
    --navy: #1e73be;
    --warn: #A12637;
    --green: #276B36;
    --green-dark: #104E24;
    --text: #141D16;
    --muted: #566158;
    --muted-light: #7A7A7A;
    --bg: #f7f8f9;
    --bg-alt: #FFFFFF;
    --card: #ffffff;
    --card-soft: #F7E6E8;
    --border: #E8D6D9;
    --shadow: 0 8px 28px rgba(20, 29, 22, 0.08);
    --radius: 14px;
    --radius-btn: 40px;
    --max: 1140px;
    --font: 'Inter', Arial, sans-serif;
    --font-heading: 'Poppins', Arial, sans-serif;
    --font-display: 'Original Surfer', 'Poppins', Georgia, serif;
    --btn-gradient: linear-gradient(90deg, #276B36 0%, #104E24 100%);
    --btn-gradient-maroon: linear-gradient(90deg, #A12637 0%, #721522 100%);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    letter-spacing: -0.01em;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 72px 0;
}

.section--alt { background: var(--bg-alt); }
.section--urgency {
    background: linear-gradient(180deg, #fff7f7 0%, #ffe9eb 100%);
}
.section--dark {
    background:
        radial-gradient(circle at 15% 10%, rgba(161, 38, 55, 0.14), transparent 42%),
        radial-gradient(circle at 85% 90%, rgba(161, 38, 55, 0.06), transparent 40%),
        repeating-linear-gradient(
            60deg,
            #0d0d0d 0,
            #0d0d0d 12px,
            #111 12px,
            #111 24px
        ),
        #0a0a0a;
    color: #fff;
}
.section--dark h2,
.section--dark .lead { color: #fff; }
.section--dark .muted,
.section--dark p { color: rgba(255, 255, 255, 0.9); }
.section--dark .container {
    border: 0;
    border-radius: 20px;
    padding: 72px 40px;
    max-width: 900px;
    background: transparent;
}
.section--center { min-height: 60vh; display: grid; place-items: center; padding: 48px 20px; }

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.eyebrow--warn,
.hero .eyebrow {
    background: var(--warn);
    color: #fff;
    padding: 10px 28px;
    border-radius: 40px;
    font-size: clamp(12px, 2.4vw, 15px);
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    line-height: 1.4;
    margin-bottom: 20px;
    max-width: 100%;
    box-shadow: 0 8px 20px rgba(161, 38, 55, 0.25);
}

/* Full-width thin top announcement bar */
.top-announce {
    width: 100%;
    background: linear-gradient(90deg, #721522 0%, #A12637 45%, #721522 100%);
    color: #fff;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
}

.top-announce__inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.top-announce__icon {
    font-size: 14px;
    line-height: 1;
    flex-shrink: 0;
}

.top-announce__text {
    font-family: var(--font);
    font-size: clamp(12px, 1.8vw, 15px);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: #fff;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .top-announce {
        justify-content: center;
        padding: 10px 14px;
        min-height: 0;
    }

    .top-announce__inner {
        justify-content: center;
        padding-right: 0;
    }

    .top-announce__text {
        white-space: normal;
        text-align: center;
    }
}

h1, h2, h3 {
    font-family: var(--font-heading);
    line-height: 1.3;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    color: var(--text);
    text-transform: capitalize;
}

h1 { font-size: clamp(1.85rem, 4.6vw, 2.75rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }

.lead { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--muted); font-weight: 400; }
.muted { color: var(--muted-light); }

.highlight { color: var(--primary); text-decoration: none; font-weight: 800; }
.highlight-accent { color: var(--accent); }

.hero__pain {
    font-family: var(--font);
    font-size: clamp(1.05rem, 2.4vw, 1.35rem);
    color: var(--primary);
    margin: 0 0 16px;
    line-height: 1.45;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.bridge-line {
    max-width: 820px;
    margin: 40px auto 0;
    font-weight: 600;
    color: var(--text);
}

.price-stack {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 14px;
    margin: 20px 0 8px;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
}

.price-stack s {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7em;
}

.price-stack strong {
    color: #fff;
    font-size: 1.15em;
}

.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: var(--radius-btn);
    font-family: var(--font);
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--btn-gradient);
    color: #fff;
    box-shadow: 0 8px 22px rgba(39, 107, 54, 0.35);
}

.btn--primary.btn--shine {
    background: var(--btn-gradient);
    background-size: 100% 100%;
    animation: btn-glow-pulse 2s ease-in-out infinite;
}

.btn--primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(39, 107, 54, 0.45), 0 0 18px rgba(16, 78, 36, 0.3);
    text-decoration: none;
}

.btn--primary.btn--shine:hover {
    animation: btn-glow-pulse 1.2s ease-in-out infinite;
}

.btn--shine {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn--shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -140%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 30%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0.08) 70%,
        transparent 100%
    );
    transform: skewX(-18deg);
    animation: btn-shine-roll 2s ease-in-out infinite;
    pointer-events: none;
}

.btn--shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -140%;
    width: 45%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent,
        rgba(255, 255, 255, 0.65),
        transparent
    );
    transform: skewX(-18deg);
    animation: btn-shine-roll 2s ease-in-out infinite 0.55s;
    pointer-events: none;
}

@keyframes btn-shine-roll {
    0% { left: -140%; }
    100% { left: 220%; }
}

@keyframes btn-gradient-roll {
    0% { background-position: 0% 50%; }
    100% { background-position: 250% 50%; }
}

@keyframes btn-glow-pulse {
    0%, 100% {
        box-shadow:
            0 6px 18px rgba(39, 107, 54, 0.35),
            0 0 0 0 rgba(39, 107, 54, 0.2);
    }
    50% {
        box-shadow:
            0 10px 28px rgba(39, 107, 54, 0.5),
            0 0 18px 5px rgba(16, 78, 36, 0.3);
    }
}

.btn--block { width: 100%; }
.btn--outline {
    background: #fff;
    color: var(--green);
    border: 2px solid var(--green);
    box-shadow: none;
}
.btn--outline:hover {
    background: var(--btn-gradient);
    color: #fff;
    border-color: transparent;
    text-decoration: none;
}
.btn--sm {
    padding: 10px 30px;
    font-size: 14px;
    border-radius: var(--radius-btn);
}

.cta-wrap { text-align: center; margin-top: 32px; }

/* Legal pages */
.legal-content {
    max-width: 720px;
}

.legal-content h3 {
    margin: 28px 0 12px;
    font-size: 1.125rem;
}

.legal-content p,
.legal-content li {
    line-height: 1.7;
    color: var(--muted);
}

.legal-content ul {
    padding-left: 1.25em;
    margin: 12px 0;
}

.legal-content hr {
    margin: 24px 0;
    border: 0;
    border-top: 1px solid var(--border);
}

.legal-content a {
    color: var(--primary);
}

.legal-back {
    margin-top: 32px;
}

/* Cards */
.card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.card--narrow { max-width: 520px; width: 100%; }
.card--success { text-align: center; }

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.pill {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(46, 198, 214, 0.12);
    color: var(--secondary);
    font-size: 14px;
    font-weight: 500;
}

/* Hero */
.hero {
    padding: 56px 0 72px;
    text-align: center;
    background:
        radial-gradient(circle at top center, rgba(161, 38, 55, 0.08), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.hero h1 {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 800;
}

.hero .lead {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.hero__video {
    max-width: 760px;
    margin: 32px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(34, 34, 34, 0.16);
    aspect-ratio: 16/9;
    background: #000;
    border: 3px solid rgba(161, 38, 55, 0.35);
}

.hero__video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    max-width: 820px;
    margin: 28px auto 20px;
    padding: 18px 12px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(34, 34, 34, 0.08);
    border: 1px solid rgba(161, 38, 55, 0.1);
}

.hero-stats__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 16px;
    text-align: left;
}

.hero-stats__item + .hero-stats__item {
    border-left: 1px solid #e5e7eb;
}

.hero-stats__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(161, 38, 55, 0.12);
    color: #000000;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.hero-stats__icon svg {
    width: 24px;
    height: 24px;
}

.hero-stats__copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.hero-stats__copy strong {
    font-size: clamp(1.25rem, 2.4vw, 1.6rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-stats__copy span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.3;
}

@media (max-width: 700px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        padding: 14px 8px;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-stats__item {
        flex-direction: column;
        justify-content: flex-start;
        gap: 8px;
        padding: 6px 6px;
        text-align: center;
    }

    .hero-stats__item + .hero-stats__item {
        border-left: 1px solid #e5e7eb;
        border-top: 0;
    }

    .hero-stats__icon {
        width: 40px;
        height: 40px;
    }

    .hero-stats__icon svg {
        width: 20px;
        height: 20px;
    }

    .hero-stats__copy {
        align-items: center;
    }

    .hero-stats__copy strong {
        font-size: 1.05rem;
    }

    .hero-stats__copy span {
        font-size: 11px;
        line-height: 1.25;
    }
}

.hero-checklist {
    list-style: none;
    margin: 8px auto 24px;
    padding: 0;
    max-width: 720px;
    text-align: left;
}

.hero-checklist li {
    position: relative;
    padding: 10px 0 10px 40px;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.55;
    color: var(--text);
    font-weight: 500;
}

.hero-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
}

.hero-checklist strong {
    font-weight: 700;
    color: var(--text);
}

/* Why This Works */
.section--why-works {
    background: linear-gradient(180deg, #FFFFFF 0%, #F7E6E8 100%);
}

.why-works__title {
    text-align: center;
    font-size: clamp(1.6rem, 3.5vw, 2.35rem);
    line-height: 1.25;
    margin: 0;
}

.why-works__title span {
    display: block;
    color: var(--primary);
}

.why-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.why-works-card {
    background: #fff;
    border: 1px solid #e8e4df;
    border-radius: 16px;
    padding: 14px 14px 22px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(34, 34, 34, 0.05);
}

.why-works-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

.why-works-card h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: var(--text);
}

.why-works-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #3a3a3a;
}

@media (max-width: 900px) {
    .why-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-works-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* What Changes / After ITPF */
.split-title {
    text-align: center;
    font-size: clamp(1.55rem, 3.4vw, 2.25rem);
    line-height: 1.25;
    margin: 0 0 12px;
    color: var(--text);
}

.split-title span {
    color: var(--primary);
}

.split-title--light {
    color: #fff;
}

.split-title--light span {
    color: var(--primary-light);
}

.btn--orange {
    background: var(--btn-gradient);
    color: #fff;
    border-radius: var(--radius-btn);
    box-shadow: 0 8px 22px rgba(39, 107, 54, 0.35);
}

.btn--orange:hover {
    background: var(--btn-gradient);
    filter: brightness(1.05);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(39, 107, 54, 0.45);
}

.section--changes {
    background: #fff;
}

.section--changes .lead {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.changes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    max-width: 960px;
    margin: 36px auto 0;
}

.changes-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.changes-list li {
    position: relative;
    padding: 14px 16px 14px 52px;
    background: #fff;
    border-left: 3px solid var(--primary);
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text);
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(34, 34, 34, 0.04);
}

.changes-list li::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background: var(--green);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px 13px;
}

.section--after-itpf {
    background:
        radial-gradient(circle at 20% 20%, rgba(161, 38, 55, 0.08), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(161, 38, 55, 0.06), transparent 35%),
        repeating-linear-gradient(
            60deg,
            #0d0d0d 0,
            #0d0d0d 12px,
            #111 12px,
            #111 24px
        ),
        #0a0a0a;
    color: #fff;
}

.section--after-itpf .lead {
    color: rgba(255, 255, 255, 0.78);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    max-width: 960px;
    margin: 36px auto 0;
}

.after-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    color: var(--text);
    border-radius: 12px;
    padding: 18px 18px 18px 16px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.after-card::before {
    content: '';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--green);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px 13px;
}

@media (max-width: 700px) {
    .changes-grid,
    .after-grid {
        grid-template-columns: 1fr;
    }
}

/* Who Is This For */
.section--who-for {
    background: #fff;
}

.who-for__title {
    text-align: center;
    font-size: clamp(1.7rem, 3.6vw, 2.4rem);
    font-weight: 800;
    margin: 0;
    color: var(--text);
}

.who-for__title span {
    color: var(--primary);
}

.who-for-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 22px;
    max-width: 960px;
    margin: 36px auto 0;
}

.who-for-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #e8e4df;
    border-bottom: 3px solid var(--primary);
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 6px 18px rgba(34, 34, 34, 0.05);
}

.who-for-card__icon {
    flex-shrink: 0;
    font-size: 28px;
    line-height: 1;
}

.who-for-card p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    text-align: left;
}

@media (max-width: 700px) {
    .who-for-grid {
        grid-template-columns: 1fr;
    }
}

/* Symptom grid */
.symptom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.symptom-card {
    text-align: center;
    padding: 24px 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.symptom-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(34, 34, 34, 0.12);
}

.symptom-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    object-fit: contain;
    border-radius: 16px;
}

.symptom-card h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.symptom-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.results-slider {
    position: relative;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.result-card {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.result-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    aspect-ratio: auto;
}

.results-slider__controls {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
}

.results-slider__btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
}

.results-slider__btn:active {
    transform: scale(0.96);
}

.results-slider__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.results-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: #d0d0d0;
    cursor: pointer;
}

.results-slider__dot.is-active {
    background: var(--primary);
    width: 22px;
    border-radius: 999px;
}

@media (max-width: 700px) {
    .results-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding: 4px 2px 10px;
        margin: 0 -4px;
        scrollbar-width: none;
    }

    .results-grid::-webkit-scrollbar {
        display: none;
    }

    .result-card {
        flex: 0 0 100%;
        max-width: 100%;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .results-slider__controls {
        display: flex;
    }
}

/* Pain grid 2x2 */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pain-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    display: block;
    object-fit: contain;
}

.pain-card h3 {
    margin-top: 0;
}

.pain-card ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.pain-card li {
    padding: 6px 0 6px 20px;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.02em;
}

.pain-card li::before {
    content: '';
    position: absolute;
    left: 0; top: 14px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--primary);
}

/* Benefits 3-col */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-card li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 15px;
}

.benefit-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Qualification split */
.qual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.qual-box {
    background: var(--card-soft);
    border: 1px solid var(--border);
}

.qual-box--no { border-left: 4px solid #cf2e2e; }
.qual-box--yes { border-left: 4px solid var(--green-dark); }

.qual-box p { margin: 8px 0; font-size: 15px; }

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 24px;
}

.testimonial-card blockquote {
    margin: 0 0 16px;
    font-style: italic;
    color: var(--muted);
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    display: block;
}

.testimonial-card span {
    font-size: 13px;
    color: var(--muted);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.google-reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    box-shadow: var(--shadow);
}

.google-reviews-badge__icon {
    flex-shrink: 0;
}

.review-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.google-review {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.google-review__stars {
    color: #FBBC04;
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 12px;
}

.google-review__text {
    flex: 1;
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

.google-review__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.google-review__author strong {
    display: block;
    font-size: 14px;
    color: var(--text);
}

.google-review__author span {
    display: block;
    font-size: 12px;
    color: var(--muted-light);
}

.google-review__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-soft);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow);
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .video-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Process steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    text-align: center;
}

.step-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    margin: 0 auto 16px;
}

/* About — Diarev profile card */
.section--about {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 36px 40px;
    align-items: center;
    border: 1px solid #E8D6D9;
    border-radius: 22px;
    padding: 40px 44px;
    background: linear-gradient(135deg, #ffffff 0%, #F7E6E8 100%);
    box-shadow: 0 10px 28px rgba(20, 29, 22, 0.06);
}

.about-photo {
    width: 100%;
    border: 2px solid var(--primary);
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    line-height: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

.about-photo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
}

.about-copy {
    text-align: left;
}

.about-name {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 400;
    color: var(--text);
    margin: 0 0 14px;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 0;
}

.about-credentials {
    font-family: var(--font);
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--text);
    margin: 0 0 10px;
    line-height: 1.55;
}

.about-roles {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.45;
}

.about-experience {
    margin: 16px 0 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
}

.about-mission {
    margin: 8px 0 22px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 16px;
}

.check-list li {
    padding: 8px 0 8px 36px;
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}

.about-tags {
    font-size: 15px;
    color: var(--muted);
    margin: 0 0 20px;
    line-height: 1.6;
}

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

.faq-q {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
}

.faq-q::after {
    content: '+';
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.2s;
}

.faq-item.is-open .faq-q::after {
    content: '−';
}

.faq-a {
    display: none;
    padding: 0 20px 18px;
    color: var(--muted);
    font-size: 15px;
}

.faq-item.is-open .faq-a { display: block; }

/* Footer */
.footer {
    background: #000000;
    color: rgba(255,255,255,0.85);
    padding: 16px 0;
    font-size: 13px;
}

.footer a { color: #F7E6E8; }

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 12px;
    text-align: center;
}

.footer-legal__links {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 12px;
}

.footer-legal__links a + a::before {
    content: '·';
    margin-right: 12px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 10px;
    padding-top: 10px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom p {
    margin: 0;
    line-height: 1.4;
}

.footer-bottom p + p {
    margin-top: 4px;
}

/* Sticky bar */
.sticky-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 100;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.sticky-bar.is-hidden {
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.sticky-bar__text {
    font-weight: 600;
    font-size: 15px;
}

.sticky-bar__price {
    font-size: 14px;
    color: var(--muted);
}

.sticky-bar__price s { color: #999; }
.sticky-bar__price strong { color: var(--primary); font-size: 18px; }

body.has-sticky-bar {
    padding-bottom: var(--sticky-bar-height, 72px);
    transition: padding-bottom 0.35s ease;
}

body.sticky-bar-hidden {
    padding-bottom: 0;
}

.success-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 28px;
    margin: 0 auto 16px;
}

.thank-you-card h1 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.thank-you-kicker {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
}

.thank-you-card .lead {
    margin: 0 0 16px;
    color: var(--muted);
}

.thank-you-contact {
    margin: 8px 0 24px;
    color: var(--muted);
}

.thank-you-card .btn {
    display: inline-flex;
}

.ty-page {
    background:
        radial-gradient(circle at 12% 0%, rgba(161, 38, 55, 0.12), transparent 42%),
        radial-gradient(circle at 90% 8%, rgba(39, 107, 54, 0.1), transparent 36%),
        #f7f4f2;
    min-height: 100vh;
}

.ty {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.ty-hero {
    position: relative;
    text-align: center;
    padding: 36px 20px 28px;
}

.ty-hero__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(39, 107, 54, 0.16), transparent 58%);
    pointer-events: none;
}

.ty-hero__icon {
    position: relative;
    width: 72px;
    height: 72px;
    font-size: 34px;
    margin-bottom: 18px;
    box-shadow: 0 12px 28px rgba(39, 107, 54, 0.28);
}

.ty-kicker {
    position: relative;
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
}

.ty-hero h1 {
    position: relative;
    margin: 0 auto 14px;
    max-width: 18ch;
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 4.6vw, 2.55rem);
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--text);
}

.ty-sub {
    position: relative;
    margin: 0 auto;
    max-width: 34em;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    color: var(--muted);
    font-weight: 500;
}

.ty-payid {
    position: relative;
    margin: 14px 0 0;
    font-size: 13px;
    color: var(--muted-light);
}

.ty-panel,
.ty-next,
.ty-wa {
    background: #fff;
    border: 1px solid rgba(161, 38, 55, 0.1);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(20, 29, 22, 0.07);
    padding: 28px 24px;
    margin-top: 20px;
}

.ty-panel h2,
.ty-next h2,
.ty-wa h2 {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    text-align: center;
}

.ty-panel__lead {
    margin: 0 0 22px;
    text-align: center;
    color: var(--muted);
}

.ty-form {
    display: grid;
    gap: 16px;
}

.ty-form label {
    display: grid;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.ty-form label span {
    color: var(--primary);
}

.ty-form input,
.ty-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    font-family: var(--font);
    font-size: 16px;
    background: #fbf8f8;
    color: var(--text);
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.ty-form input:focus,
.ty-form textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(39, 107, 54, 0.12);
}

.ty-form textarea {
    resize: vertical;
    min-height: 110px;
}

.ty-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

.ty-form__submit {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.ty-success {
    text-align: center;
    padding: 12px 8px 4px;
}

.ty-success h3 {
    margin: 0 0 8px;
    font-family: var(--font-heading);
}

.ty-success p {
    margin: 0;
    color: var(--muted);
}

.ty-popup {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 20px;
}

.ty-popup[hidden] {
    display: none;
}

.ty-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 29, 22, 0.55);
    backdrop-filter: blur(4px);
}

.ty-popup__card {
    position: relative;
    width: min(420px, 100%);
    background: #fff;
    border-radius: 24px;
    padding: 32px 24px 24px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(20, 29, 22, 0.22);
}

.ty-popup__card h3 {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.ty-popup__card p {
    margin: 0 0 22px;
    color: var(--muted);
}

.ty-popup__actions {
    display: grid;
    gap: 10px;
}

.ty-popup__actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
}

body.ty-popup-open {
    overflow: hidden;
}

.ty-steps {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.ty-steps li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: start;
    padding: 14px;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff 0%, #f7e6e8 140%);
}

.ty-steps__num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--btn-gradient);
    color: #fff;
    font-weight: 800;
}

.ty-steps strong {
    display: block;
    margin-bottom: 2px;
}

.ty-steps p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.ty-wa {
    text-align: center;
    background:
        linear-gradient(180deg, rgba(39, 107, 54, 0.06), transparent 40%),
        #fff;
}

.btn--whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(18, 140, 126, 0.35);
    min-width: 220px;
}

.btn--whatsapp:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(18, 140, 126, 0.45);
}

.ty-wa__hint {
    margin: 12px 0 0;
    font-size: 13px;
    color: var(--muted);
}

.form-message {
    min-height: 20px;
    font-size: 14px;
    margin: 0;
    text-align: center;
}

.form-message.is-error { color: #cf2e2e; }
.form-message.is-success { color: var(--green-dark); }

@media (max-width: 600px) {
    .ty {
        padding: 24px 16px 72px;
    }
    .ty-panel,
    .ty-next,
    .ty-wa {
        padding: 22px 16px;
        border-radius: 20px;
    }
}

.summary-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 24px 0;
}

.summary-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 1000px) {
    .symptom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .about-grid,
    .testimonial-grid, .reviews-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
    .about-grid {
        padding: 24px;
        gap: 24px;
    }
    .about-photo { order: 0; }
    .about-copy { order: 1; }
    .benefit-grid,
    .steps-grid,
    .pain-grid,
    .qual-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .section { padding: 48px 0; }
    .pain-grid,
    .benefit-grid,
    .qual-grid,
    .steps-grid,
    .video-grid,
    .symptom-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
    .pain-card {
        padding: 16px;
    }
    .benefit-card {
        padding: 16px;
    }
    .qual-box {
        padding: 16px;
    }
    .step-card {
        padding: 16px;
    }
    .step-card h3 {
        font-size: 14px;
        line-height: 1.3;
    }
    .step-card p {
        font-size: 11px;
        line-height: 1.4;
    }
    .step-num {
        width: 36px;
        height: 36px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    .sticky-bar { flex-direction: column; text-align: center; }
    .sticky-bar .btn { width: 100%; }
    .btn { padding: 10px 20px; font-size: 0.95rem; white-space: normal; text-align: center; }
    .section--dark .container { padding: 20px; }
}
