/* ═══════════════════════════════════════════
   DecideAI — LP Freelancer v2
   Dark • Editorial • Alive • Conversion
   Mobile-first • No frameworks
   ═══════════════════════════════════════════ */

:root {
    --green: #18D96B;
    --green-dark: #0C6A35;
    --green-glow: rgba(24, 217, 107, 0.15);
    --purple: #8B18D9;
    --purple-glow: rgba(139, 24, 217, 0.12);
    --orange: #FAA901;
    --red: #C12D1E;

    --bg: #000000;
    --bg-alt: #0A0A0A;
    --bg-warm: #080604;
    --bg-card: #171717;
    --bg-card-alt: #1A1A1A;
    --border: #262626;
    --border-light: #333333;

    --text: #FFFFFF;
    --text-secondary: #A3A3A3;
    --text-muted: #737373;

    --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
    --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container: 1080px;
    --gap: 1.5rem;
    --radius: 10px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* ── Utility ── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    line-height: 1.15;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text);
}

/* ── Separator ── */
.separator {
    height: 1px;
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

/* ── Brand Divider ── */
.brand-divider {
    padding: 1.5rem 0;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 7vw, 5rem);
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.06);
    user-select: none;
    overflow: hidden;
    white-space: nowrap;
}

.brand-divider--accent {
    color: rgba(24, 217, 107, 0.1);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--green);
    color: #000;
    padding: 0.95rem 2.25rem;
    border-radius: var(--radius);
    font-size: 1.05rem;
    font-weight: 700;
}

.btn--primary:hover {
    background: var(--green-dark);
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(24, 217, 107, 0.25);
}

.btn--outline {
    background: transparent;
    color: var(--text);
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

.btn--outline:hover {
    border-color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
}

.btn--dark {
    background: #000;
    color: var(--green);
    padding: 1rem 2.5rem;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid rgba(0, 0, 0, 0.8);
}

.btn--dark:hover {
    background: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* Pulse animation on CTA */
.btn--pulse {
    animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(24, 217, 107, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(24, 217, 107, 0);
    }
}

/* ── Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 2rem 0 3rem;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.hero__bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.hero__bg-glow--green {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(24, 217, 107, 0.18) 0%, transparent 70%);
    top: -15%;
    left: -10%;
}

.hero__bg-glow--purple {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 24, 217, 0.14) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__logo {
    margin-bottom: 2rem;
    height: 32px;
    width: auto;
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.25rem, 7vw, 4.2rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
}

.hero__highlight {
    color: var(--green);
    position: relative;
}

.hero__sub {
    font-size: clamp(0.95rem, 2vw, 1.12rem);
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 2rem;
}

.hero__trust {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

/* ── Hero Video ── */
.hero__video-frame {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(24, 217, 107, 0.05);
    position: relative;
}

.hero__video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

@media (min-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero__grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
    }

    .hero__video-frame {
        max-width: 480px;
    }
}

/* ═══════════════════════════════════════════
   A DOR — emo, chaotic, editorial
   ═══════════════════════════════════════════ */
.pain {
    padding: 5rem 0;
    background: var(--bg-warm);
    position: relative;
    overflow: hidden;
}

/* Warm orange overlay */
.pain::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(250, 169, 1, 0.02);
    pointer-events: none;
}

/* Subtle dot pattern */
.pain__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.pain__chaos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    position: relative;
}

.pain__bubble {
    background: #1C1C1E;
    border: 1px solid #333;
    border-radius: 16px 16px 16px 4px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pain__bubble p {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.4;
    color: var(--text);
}

.pain__emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

/* Stagger: alternate alignment + slight rotations */
.pain__bubble--1 {
    align-self: flex-start;
    transform: rotate(-0.5deg);
}

.pain__bubble--2 {
    align-self: flex-end;
    border-radius: 16px 16px 4px 16px;
    transform: rotate(0.4deg);
}

.pain__bubble--3 {
    align-self: flex-start;
    transform: rotate(-0.3deg);
}

.pain__bubble--4 {
    align-self: flex-end;
    border-radius: 16px 16px 4px 16px;
    transform: rotate(0.6deg);
}

/* Wobble on hover */
.pain__bubble:hover {
    animation: wobble 0.4s ease;
}

@keyframes wobble {
    0% {
        transform: rotate(0) scale(1);
    }

    25% {
        transform: rotate(-1.5deg) scale(1.01);
    }

    50% {
        transform: rotate(1deg) scale(1.01);
    }

    75% {
        transform: rotate(-0.5deg) scale(1);
    }

    100% {
        transform: rotate(0) scale(1);
    }
}

/* Post-it editorial element */
.pain__postit {
    background: #FAA901;
    color: #000;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    border-radius: 2px;
    transform: rotate(2.5deg);
    align-self: center;
    position: relative;
    box-shadow: 2px 3px 12px rgba(0, 0, 0, 0.4);
    margin-top: 0.5rem;
}

.pain__postit-pin {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #C12D1E;
    border-radius: 50%;
    border: 2px solid #8a1f14;
}

.pain__closing {
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--green);
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════
   COMO FUNCIONA — with CSS mockups
   ═══════════════════════════════════════════ */
.steps {
    padding: 6.5rem 0;
    background: var(--bg-alt);
}

.steps__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.steps__item {
    text-align: center;
}

.steps__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    color: #000;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.steps__name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.steps__desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Mock Window (Upload) ── */
.mock-window {
    background: #111;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 320px;
    margin: 0 auto;
    text-align: left;
}

.mock-window__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    background: #1a1a1a;
    border-bottom: 1px solid var(--border);
}

.mock-window__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mock-window__dot--r {
    background: #ff5f56;
}

.mock-window__dot--y {
    background: #ffbd2e;
}

.mock-window__dot--g {
    background: #27c93f;
}

.mock-window__tab {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-left: 8px;
    font-weight: 500;
}

.mock-window__body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-upload-zone {
    border: 2px dashed var(--border);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.mock-file {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #222;
}

.mock-file__icon {
    font-size: 0.9rem;
}

.mock-file__size {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.6rem;
}

.mock-tag {
    font-size: 0.65rem;
    color: var(--green);
    background: rgba(24, 217, 107, 0.08);
    border: 1px solid rgba(24, 217, 107, 0.15);
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 500;
}

/* ── Mock Phone (Decide) ── */
.mock-phone {
    width: 200px;
    margin: 0 auto;
    background: #1A1A1A;
    border: 2px solid #333;
    border-radius: 24px;
    padding: 0 0 12px;
}

.mock-phone__notch {
    width: 60px;
    height: 5px;
    background: #333;
    border-radius: 99px;
    margin: 8px auto 6px;
}

.mock-phone__screen {
    margin: 0 6px;
    background: #111;
    border-radius: 0 0 18px 18px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-phone__img {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #222, #1a1a1a);
    border-radius: 6px;
    border: 1px solid #2a2a2a;
}

.mock-phone__actions {
    display: flex;
    gap: 4px;
}

.mock-phone__btn {
    flex: 1;
    text-align: center;
    padding: 7px 0;
    border-radius: 5px;
    font-size: 0.65rem;
    font-weight: 700;
}

.mock-phone__btn--yes {
    background: var(--green);
    color: #000;
}

.mock-phone__btn--change {
    background: rgba(250, 169, 1, 0.12);
    color: var(--orange);
    border: 1px solid rgba(250, 169, 1, 0.2);
}

/* ── Mock Timeline (Register) ── */
.mock-timeline {
    max-width: 300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 20px;
}

.mock-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--border);
}

.mock-timeline__entry {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    position: relative;
}

.mock-timeline__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    position: absolute;
    left: -20px;
    top: 12px;
    border: 2px solid #111;
}

.mock-timeline__dot--blue {
    background: #3b82f6;
}

.mock-timeline__dot--orange {
    background: var(--orange);
}

.mock-timeline__dot--green {
    background: var(--green);
}

.mock-timeline__action {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text);
}

.mock-timeline__time {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 2px;
}

@media (min-width: 1024px) {
    .steps__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* ═══════════════════════════════════════════
   GUIDED DEMO
   ═══════════════════════════════════════════ */
.demo {
    padding: 6rem 0;
    background: var(--bg-alt);
}

.demo__sub {
    text-align: center;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 560px;
    margin: -1.5rem auto 2.5rem;
}

.demo__note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 1.5rem auto 0;
}

.guided-demo {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}

/* Step indicator dots */
.gd-steps {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.gd-steps__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.3s;
}

.gd-steps__dot--active {
    background: var(--green);
    box-shadow: 0 0 8px rgba(24, 217, 107, 0.4);
}

.gd-steps__dot--done {
    background: rgba(24, 217, 107, 0.4);
}

/* Tooltip */
.gd-tooltip {
    text-align: center;
    margin-bottom: 0.75rem;
    min-height: 1.5rem;
}

.gd-tooltip span {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--green);
    background: rgba(24, 217, 107, 0.08);
    border: 1px solid rgba(24, 217, 107, 0.15);
    padding: 0.3rem 0.75rem;
    border-radius: 99px;
    display: inline-block;
    transition: opacity 0.3s;
}

/* Screen wrapper */
.gd-screen-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 80px rgba(24, 217, 107, 0.04);
    background: #111;
    position: relative;
    min-height: 420px;
}

.gd-screen {
    display: none;
    animation: gdFadeIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gd-screen--active {
    display: block;
}

@keyframes gdFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* App frame (shared) */
.gd-app {
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.gd-app__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    background: var(--bg-card-alt);
    border-bottom: 1px solid var(--border);
}

.gd-app__logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--green);
}

.gd-app__user {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.gd-app__back {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.78rem;
    cursor: pointer;
    font-family: var(--font-body);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: color 0.2s;
}

.gd-app__back:hover {
    color: var(--text);
}

.gd-app__body {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gd-app__body--center {
    justify-content: center;
    align-items: center;
}

.gd-app__body--preview {
    gap: 1rem;
}

.gd-app__section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

/* ── Hotspot pulse ── */
.gd-hotspot {
    position: relative;
}

.gd-hotspot__pulse {
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 2px solid var(--green);
    animation: gdPulse 1.8s ease-in-out infinite;
    pointer-events: none;
}

.gd-hotspot__pulse--orange {
    border-color: var(--orange);
    animation-name: gdPulseOrange;
}

@keyframes gdPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 0;
        transform: scale(1.15);
    }
}

@keyframes gdPulseOrange {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 0;
        transform: scale(1.15);
    }
}

/* ── Buttons (demo) ── */
.gd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.gd-btn--green {
    background: var(--green);
    color: #000;
}

.gd-btn--green:hover {
    background: var(--green-dark);
    color: #fff;
}

.gd-btn--orange {
    background: rgba(250, 169, 1, 0.15);
    color: var(--orange);
    border: 1px solid rgba(250, 169, 1, 0.25);
}

.gd-btn--orange:hover {
    background: rgba(250, 169, 1, 0.25);
}

.gd-btn--outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
    font-size: 0.75rem;
}

.gd-btn--outline:hover {
    border-color: var(--text-muted);
    color: var(--text);
}

/* ── STEP 0: Welcome ── */
.gd-welcome {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.gd-welcome__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
}

.gd-welcome__hello {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
}

.gd-welcome__sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* ── STEP 1: Solicitation list ── */
.gd-solic {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.85rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    cursor: default;
    transition: border-color 0.2s, background 0.2s;
}

.gd-solic--pending {
    border-color: rgba(250, 169, 1, 0.3);
    background: rgba(250, 169, 1, 0.03);
    cursor: pointer;
}

.gd-solic--pending:hover {
    border-color: var(--green);
    background: rgba(24, 217, 107, 0.03);
}

.gd-solic--done {
    opacity: 0.5;
}

.gd-solic__thumb {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.gd-solic__thumb--img {
    background: linear-gradient(135deg, #2a1545, #0d3320);
}

.gd-solic__thumb--vid {
    background: var(--bg-card);
}

.gd-solic__name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 2px;
}

.gd-solic__meta {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.gd-badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 99px;
    display: inline-block;
}

.gd-badge--pending {
    background: rgba(250, 169, 1, 0.1);
    color: var(--orange);
}

.gd-badge--done {
    background: rgba(24, 217, 107, 0.1);
    color: var(--green);
}

/* ── STEP 2: Preview ── */
.gd-preview {
    flex: 1;
}

.gd-preview__image {
    margin-bottom: 0.5rem;
}

.gd-preview__canvas {
    background: #1a1a1a;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.gd-preview__canvas--small {
    max-width: 200px;
}

.gd-preview__mock-post {
    padding: 0;
}

.gd-preview__mock-post--small .gd-preview__bar-top,
.gd-preview__mock-post--small .gd-preview__caption {
    display: none;
}

.gd-preview__bar-top {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
}

.gd-preview__brand-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--orange));
}

.gd-preview__brand-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text);
}

.gd-preview__visual {
    background: linear-gradient(145deg, #1a0a2e, #0a2e1a);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
}

.gd-preview__visual--small {
    aspect-ratio: 4/3;
}

.gd-preview__tag {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: 0.04em;
}

.gd-preview__tag2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--green);
}

.gd-preview__caption {
    display: flex;
    gap: 12px;
    padding: 8px 10px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.gd-preview__filename {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-align: center;
    padding: 4px 0;
}

.gd-preview__actions {
    display: flex;
    gap: 8px;
}

.gd-preview__actions .gd-btn {
    flex: 1;
}

/* ── STEP 3 & 5: Confirmation ── */
.gd-confirmation {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 320px;
}

.gd-confirmation__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.gd-confirmation__icon--green {
    background: var(--green);
    color: #000;
    box-shadow: 0 0 30px rgba(24, 217, 107, 0.3);
}

.gd-confirmation__icon--blue {
    background: #3b82f6;
    color: #fff;
    font-size: 1.3rem;
}

.gd-confirmation__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
}

.gd-confirmation__sub {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
}

.gd-confirmation__receipt {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: left;
    width: 100%;
}

.gd-confirmation__receipt p {
    margin-bottom: 2px;
}

.gd-confirmation__receipt strong {
    color: var(--text);
}

.gd-confirmation__timeline {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gd-conf-tl__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.gd-conf-tl__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.gd-conf-tl__dot--blue {
    background: #3b82f6;
}

.gd-conf-tl__dot--orange {
    background: var(--orange);
}

.gd-conf-tl__dot--green {
    background: var(--green);
}

/* ── STEP 4: Change request ── */
.gd-change-req {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gd-change-req__preview {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

/* Real image in preview (step 2) */
.gd-preview__img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* Real image in change-req (step 4) */
.gd-change-req__img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.gd-change-req__pin {
    position: absolute;
    top: 15%;
    right: 8px;
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    animation: gdPinBounce 1.5s ease-in-out infinite;
    z-index: 2;
}

@keyframes gdPinBounce {

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

    50% {
        transform: translateY(-4px);
    }
}

.gd-change-req__form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem;
}

.gd-change-req__label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.gd-change-req__input {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.5;
}

.gd-change-req__cursor {
    color: var(--green);
    animation: gdBlink 1s steps(1) infinite;
}

@keyframes gdBlink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 480px) {
    .guided-demo {
        margin: 0 -0.5rem;
    }

    .gd-screen-wrap {
        border-radius: 12px;
        min-height: 380px;
    }

    .gd-app {
        min-height: 380px;
    }

    .gd-preview__tag2 {
        font-size: 1.3rem;
    }
}

/* ═══════════════════════════════════════════
   BENEFÍCIOS — alternating layout
   ═══════════════════════════════════════════ */
.benefits {
    padding: 5rem 0;
    background: var(--bg);
}

.benefits__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.benefits__row:last-child {
    margin-bottom: 0;
}

.benefits__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.benefits__desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Visuals */
.mock-notification {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    max-width: 320px;
    margin: 0 auto;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.mock-notification:hover {
    border-color: rgba(24, 217, 107, 0.3);
    box-shadow: 0 0 30px rgba(24, 217, 107, 0.06);
}

.mock-notification__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mock-notification__title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green);
}

.mock-notification__text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.mock-notification__link {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.mock-reminder {
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
}

.mock-reminder__bell {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.mock-reminder__badge {
    display: inline-block;
    background: var(--green-glow);
    border: 1px solid rgba(24, 217, 107, 0.2);
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    margin-bottom: 0.5rem;
}

.mock-reminder__sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Seal */
.benefits__row--full {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.benefits__text--center {
    max-width: 520px;
}

.benefits__seal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: #000;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    box-shadow: 0 4px 20px rgba(24, 217, 107, 0.2);
}

.benefits__seal-status {
    font-weight: 800;
    font-family: var(--font-display);
    font-size: 0.9rem;
}

.benefits__seal-date {
    font-size: 0.72rem;
    opacity: 0.7;
    font-weight: 500;
}

@media (min-width: 768px) {
    .benefits__row--left {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .benefits__row--right {
        grid-template-columns: 0.8fr 1.2fr;
    }
}

/* ═══════════════════════════════════════════
   JORNADA — "Como funciona pra você"
   ═══════════════════════════════════════════ */
.journey {
    padding: 5rem 0;
    background: var(--bg-alt);
}

.journey__track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 400px;
    margin: 0 auto;
}

.journey__step {
    width: 100%;
}

.journey__day {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green);
    margin-bottom: 0.4rem;
    padding-left: 4px;
}

.journey__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    transition: border-color 0.3s;
}

.journey__card:hover {
    border-color: var(--border-light);
}

.journey__card--final {
    border-color: var(--green);
    background: rgba(24, 217, 107, 0.04);
}

.journey__label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

.journey__connector {
    width: 2px;
    height: 24px;
    background: var(--border);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .journey__track {
        flex-direction: row;
        max-width: 100%;
        align-items: stretch;
    }

    .journey__step {
        flex: 1;
    }

    .journey__connector {
        width: 40px;
        height: 2px;
        align-self: center;
        margin: 0;
        flex-shrink: 0;
    }
}

/* ═══════════════════════════════════════════
   PREÇOS
   ═══════════════════════════════════════════ */
.pricing {
    padding: 5rem 0;
    background: var(--bg);
}

.pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 920px;
    margin: 0 auto;
}

.pricing__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing__card--featured {
    border-color: var(--green);
    background: var(--bg-card-alt);
    box-shadow: 0 0 40px rgba(24, 217, 107, 0.1), 0 0 80px rgba(24, 217, 107, 0.04);
}

.pricing__badge {
    position: absolute;
    top: -1px;
    right: 1.5rem;
    background: var(--green);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.75rem;
    border-radius: 0 0 6px 6px;
}

.pricing__name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing__price {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    margin-bottom: 0.75rem;
}

.pricing__currency {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing__value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.75rem;
    line-height: 1;
}

.pricing__card--featured .pricing__value {
    color: var(--green);
}

.pricing__period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing__identity {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.pricing__card--featured .pricing__identity {
    color: var(--text-secondary);
}

.pricing__features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.pricing__features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing__card--featured .pricing__features li {
    color: var(--text);
}

.pricing__cta {
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .pricing__grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }

    .pricing__card--featured {
        transform: scale(1.04);
        z-index: 1;
    }
}

@media (max-width: 767px) {
    .pricing__grid {
        display: flex;
        flex-direction: column;
    }

    .pricing__card--featured {
        order: -1;
    }
}

/* ── Pricing Expand ── */
.pricing__extra {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.pricing__extra.is-open {
    max-height: 300px;
}

.pricing__features--extra {
    padding-top: 0.25rem;
}

.pricing__expand {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-family: var(--font-body);
    cursor: pointer;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.pricing__expand:hover {
    color: var(--green);
}

.pricing__expand.is-open {
    color: var(--green);
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq {
    padding: 5rem 0;
    background: var(--bg-alt);
}

.faq__list {
    max-width: 700px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
    border-top: 1px solid var(--border);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    transition: color 0.2s;
}

.faq__question:hover {
    color: var(--green);
}

.faq__chevron {
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    color: var(--text-muted);
}

.faq__item.is-open .faq__chevron {
    transform: rotate(180deg);
    color: var(--green);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__answer p {
    padding-bottom: 1.25rem;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq__item.is-open .faq__answer {
    max-height: 200px;
}

/* ═══════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════ */
.cta-final {
    background: var(--green);
    padding: 5rem 0;
    text-align: center;
}

.cta-final__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    line-height: 1.15;
    color: #000;
    margin-bottom: 2rem;
}

.cta-final__trust {
    margin-top: 1rem;
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.55);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    padding: 2.5rem 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

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

.footer__brand img {
    height: 24px;
    width: auto;
}

.footer__tagline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.footer__links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__links a {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer__links a:hover {
    color: var(--text);
}

.footer__sep {
    color: var(--border);
    font-size: 0.75rem;
}

.footer__copy {
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .footer__inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ═══════════════════════════════════════════
   GUIDED DEMO
   ═══════════════════════════════════════════ */
.guided-demo {
    max-width: 380px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* ── Progress dots ── */
.gd-steps {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 0 10px;
}

.gd-steps__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.3s;
    cursor: default;
}

.gd-steps__dot--active {
    background: var(--green);
    box-shadow: 0 0 8px var(--green-glow);
    transform: scale(1.2);
}

.gd-steps__dot--done {
    background: var(--purple);
}

/* ── Tooltip ── */
.gd-tooltip {
    text-align: center;
    padding: 0 16px 10px;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    min-height: 20px;
}

/* ── Screen Wrap ── */
.gd-screen-wrap {
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

.gd-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateX(30px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gd-screen--active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    position: relative;
}

/* ── App frame ── */
.gd-app {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gd-app__bar {
    background: #0D0D0D;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    min-height: 40px;
}

.gd-app__logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--green);
}

.gd-app__user {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.gd-app__back {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.75rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.2s;
}

.gd-app__back:hover {
    color: var(--text);
}

.gd-app__body {
    flex: 1;
    padding: 16px;
}

.gd-app__body--center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gd-app__body--preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gd-app__section-title {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

/* ── Welcome Screen ── */
.gd-welcome {
    text-align: center;
}

.gd-welcome__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--green));
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.gd-welcome__hello {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.gd-welcome__sub {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* ── Buttons ── */
.gd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.gd-btn--green {
    background: var(--green);
    color: #000;
}

.gd-btn--green:hover {
    background: var(--green-dark);
}

.gd-btn--orange {
    background: rgba(250, 169, 1, 0.15);
    color: var(--orange);
    border: 1px solid rgba(250, 169, 1, 0.3);
}

.gd-btn--orange:hover {
    background: rgba(250, 169, 1, 0.25);
}

.gd-btn--outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
}

.gd-btn--outline:hover {
    border-color: var(--text-muted);
    color: var(--text);
}

/* ── Hotspot Pulse ── */
.gd-hotspot {
    position: relative;
}

.gd-hotspot__pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 8px;
    animation: hotspotPulse 2s ease-in-out infinite;
    pointer-events: none;
}

.gd-hotspot__pulse {
    box-shadow: 0 0 0 0 rgba(24, 217, 107, 0.4);
}

.gd-hotspot__pulse--orange {
    box-shadow: 0 0 0 0 rgba(250, 169, 1, 0.4);
}

@keyframes hotspotPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(24, 217, 107, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(24, 217, 107, 0);
    }
}

/* ── Solicitation Cards ── */
.gd-solic {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 8px;
    cursor: default;
    transition: border-color 0.3s, background 0.3s;
}

.gd-solic--pending {
    border-color: rgba(250, 169, 1, 0.3);
}

.gd-solic--pending.gd-hotspot {
    cursor: pointer;
}

.gd-solic--pending.gd-hotspot:hover {
    background: rgba(250, 169, 1, 0.04);
    border-color: var(--orange);
}

.gd-solic--done {
    border-color: rgba(24, 217, 107, 0.15);
    opacity: 0.6;
}

.gd-solic__thumb {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    flex-shrink: 0;
}

.gd-solic__thumb--img {
    background: linear-gradient(135deg, #1a3a2a, #0a2a1a);
}

.gd-solic__thumb--vid {
    background: linear-gradient(135deg, #2a1a3a, #1a0a2a);
}

.gd-solic__name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
}

.gd-solic__meta {
    font-size: 0.62rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.gd-badge {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 4px;
}

.gd-badge--pending {
    background: rgba(250, 169, 1, 0.1);
    color: var(--orange);
}

.gd-badge--done {
    background: rgba(24, 217, 107, 0.1);
    color: var(--green);
}

/* ── Preview Screen ── */
.gd-preview {
    flex: 1;
}

.gd-preview__image {
    background: #222;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.gd-preview__img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.gd-preview__filename {
    font-size: 0.62rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 6px;
}

.gd-preview__actions {
    display: flex;
    gap: 8px;
    padding: 0 16px 16px;
}

.gd-preview__actions .gd-btn {
    flex: 1;
}

/* ── Confirmation Screen ── */
.gd-confirmation {
    text-align: center;
    max-width: 280px;
}

.gd-confirmation__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 10px;
}

.gd-confirmation__icon--green {
    background: rgba(24, 217, 107, 0.15);
}

.gd-confirmation__icon--blue {
    background: rgba(59, 130, 246, 0.15);
}

.gd-confirmation__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.gd-confirmation__sub {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.5;
}

.gd-confirmation__receipt {
    background: #1A1A1A;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px;
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
    text-align: left;
    line-height: 1.6;
}

/* ── Change Request Screen ── */
.gd-change-req {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gd-change-req__preview {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.gd-change-req__img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.gd-change-req__pin {
    position: absolute;
    top: 35%;
    left: 60%;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    animation: pinBounce 1.5s ease-in-out infinite;
    cursor: default;
}

@keyframes pinBounce {

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

    50% {
        transform: translateY(-5px);
    }
}

.gd-change-req__form {
    background: #1A1A1A;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px;
}

.gd-change-req__label {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 600;
}

.gd-change-req__input {
    background: #222;
    border-radius: 4px;
    padding: 8px;
    font-size: 0.72rem;
    color: var(--text);
    min-height: 40px;
    display: flex;
    align-items: flex-start;
}

.gd-change-req__typed {
    display: inline;
}

.gd-change-req__cursor {
    animation: blink 0.8s step-end infinite;
    color: var(--green);
    font-weight: 300;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* ── Confirmation Timeline ── */
.gd-confirmation__timeline {
    background: #1A1A1A;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 14px;
    text-align: left;
}

.gd-conf-tl__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    color: var(--text-secondary);
    padding: 4px 0;
}

.gd-conf-tl__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.gd-conf-tl__dot--blue {
    background: #3b82f6;
}

.gd-conf-tl__dot--orange {
    background: var(--orange);
}

.gd-conf-tl__dot--green {
    background: var(--green);
}