/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
    --green: #18D96B;
    --green-dark: #0C6A35;
    --green-glow: rgba(24, 217, 107, 0.15);
    --purple: #8B18D9;
    --purple-light: hsl(277, 80%, 60%);
    --purple-glow: rgba(139, 24, 217, 0.15);
    --orange: #FAA901;
    --red: #C12D1E;
    --bg: #000000;
    --bg-alt: #0A0A0A;
    --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;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* ═══════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════ */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

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

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

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

.btn--outline:hover {
    border-color: var(--text-secondary);
    transform: translateY(-1px);
}

.btn--dark {
    background: #000;
    color: #fff;
}

.btn--dark:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

.btn--pulse {
    animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {

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

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

/* ═══════════════════════════════════════════
   SEPARATOR
   ═══════════════════════════════════════════ */
.separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0;
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATION
   ═══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
    position: relative;
    padding: 4rem 0 5rem;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero__bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(160px);
    pointer-events: none;
    opacity: 0.5;
}

.hero__bg-glow--green {
    background: var(--green-glow);
    top: -200px;
    left: -150px;
}

.hero__bg-glow--purple {
    background: var(--purple-glow);
    bottom: -200px;
    right: -150px;
}

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

.hero__logo {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
}

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

.hero__sub {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero__cta {
    margin-bottom: 0.8rem;
}

.hero__trust {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.hero__proof {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.8rem;
    font-weight: 500;
}

/* Hero Video Placeholder */
.hero__media {
    display: flex;
    justify-content: center;
}

.hero__video-frame {
    width: 100%;
    max-width: 680px;
    aspect-ratio: 16 / 9;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.hero__video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: background 0.3s;
}

.hero__video-placeholder:hover {
    background: rgba(255, 255, 255, 0.03);
}

.hero__play-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text);
    transition: all 0.3s;
}

.hero__video-placeholder:hover .hero__play-icon {
    background: var(--green);
    border-color: var(--green);
    color: #000;
    transform: scale(1.1);
}

.hero__play-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

@media (min-width: 768px) {
    .hero__grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
    }
}

/* ═══════════════════════════════════════════
   COST (O custo do caos)
   ═══════════════════════════════════════════ */
.cost {
    padding: 6rem 0;
}

.cost__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.cost__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.cost__card:hover {
    border-color: var(--orange);
    box-shadow: 0 0 30px rgba(250, 169, 1, 0.08);
}

.cost__number {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -0.03em;
    display: block;
    line-height: 1;
}

.cost__unit {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    display: block;
    margin: 0.4rem 0 0.8rem;
}

.cost__desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cost__disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.cost__closing {
    text-align: center;
    font-size: 1.1rem;
    color: var(--green);
    font-weight: 600;
}

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

/* ═══════════════════════════════════════════
   STEPS (Como funciona)
   ═══════════════════════════════════════════ */
.steps {
    padding: 6rem 0;
}

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

.steps__item {
    text-align: center;
}

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

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

.steps__desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 340px;
    margin: 0 auto 1.5rem;
}

/* Step Mockups */
.steps__mockup {
    max-width: 300px;
    margin: 0 auto;
}

/* Window Mockup */
.mock-window {
    background: #1A1A1A;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
}

.mock-window__bar {
    background: #0D0D0D;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

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

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

.mock-window__dot--g {
    background: #28c840;
}

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

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

.mock-field {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    padding: 6px 8px;
    background: #222;
    border-radius: 4px;
}

.mock-field__label {
    color: var(--text-muted);
}

.mock-field__value {
    color: var(--text);
    font-weight: 500;
}

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

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

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

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

/* Phone Mockup */
.mock-phone {
    width: 200px;
    margin: 0 auto;
    background: #1A1A1A;
    border: 2px solid #333;
    border-radius: 24px;
    padding: 0 0 12px;
    position: relative;
}

.mock-phone__notch {
    width: 80px;
    height: 20px;
    background: #000;
    border-radius: 0 0 12px 12px;
    margin: 0 auto 8px;
}

.mock-phone__screen {
    padding: 0 10px;
}

.mock-phone__img {
    width: 100%;
    border-radius: 6px;
    display: block;
}

.mock-phone__actions {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

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

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

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

/* Timeline Mockup */
.mock-timeline {
    background: #1A1A1A;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mock-timeline__entry {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.mock-timeline__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
}

.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.75rem;
    color: var(--text);
    font-weight: 500;
}

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

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

/* ═══════════════════════════════════════════
   DEMO (Estática)
   ═══════════════════════════════════════════ */
.demo {
    padding: 6rem 0;
}

.demo__sub {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.demo__frame {
    max-width: 440px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.demo__app {
    min-height: 340px;
}

.demo__header {
    background: #0D0D0D;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.demo__logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--green);
}

.demo__user {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.demo__body {
    padding: 16px;
}

.demo__section-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.demo__card {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 8px;
    transition: border-color 0.3s;
}

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

.demo__card--done {
    border-color: rgba(24, 217, 107, 0.2);
}

.demo__card--changes {
    border-color: rgba(59, 130, 246, 0.3);
}

.demo__thumb {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    flex-shrink: 0;
}

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

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

.demo__thumb--pdf {
    background: linear-gradient(135deg, #3a2a1a, #2a1a0a);
}

.demo__card-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
}

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

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

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

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

.demo__badge--changes {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.demo__note {
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 2rem;
}

/* ═══════════════════════════════════════════
   EDITORIAL DIVIDER
   ═══════════════════════════════════════════ */
.editorial-divider {
    padding: 4rem 0;
    text-align: center;
    overflow: hidden;
}

.editorial-divider span {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: var(--green);
    opacity: 0.1;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════
   BENEFITS
   ═══════════════════════════════════════════ */
.benefits {
    padding: 6rem 0;
}

.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-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

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

.benefits__text--center {
    text-align: center;
}

/* Notification & History Mockups */
.mock-notification,
.mock-history {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 360px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.mock-notification:hover,
.mock-history:hover {
    border-color: var(--green);
    box-shadow: 0 0 20px var(--green-glow);
}

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

.mock-notification__title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
}

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

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

.mock-history__entry {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.mock-history__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    margin-top: 4px;
    flex-shrink: 0;
}

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

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

/* Benefits Seal */
.benefits__seal {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--green);
    color: #000;
    padding: 12px 24px;
    border-radius: 10px;
    margin: 1.5rem auto 0;
}

.benefits__seal-status {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

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

    .benefits__row--full {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════
   JOURNEY
   ═══════════════════════════════════════════ */
.journey {
    padding: 6rem 0;
}

.journey__track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.journey__step {
    text-align: center;
    width: 100%;
    max-width: 320px;
}

.journey__day {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

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

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

.journey__card--final {
    background: rgba(24, 217, 107, 0.08);
    border-color: rgba(24, 217, 107, 0.25);
}

.journey__label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

@media (min-width: 768px) {
    .journey__track {
        flex-direction: row;
        justify-content: center;
        gap: 0;
    }

    .journey__connector {
        width: 40px;
        height: 1px;
    }

    .journey__step {
        max-width: 220px;
    }
}

/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */
.pricing {
    padding: 6rem 0;
}

.pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s;
}

.pricing__card--featured {
    border-color: var(--purple);
    box-shadow: 0 0 40px rgba(139, 24, 217, 0.12);
    position: relative;
}

.pricing__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.pricing__price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 0.5rem;
}

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

.pricing__value {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

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

.pricing__identity {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-style: italic;
}

.pricing__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing__features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

/* 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,
.pricing__expand.is-open {
    color: var(--purple);
}

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

@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;
    }
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq {
    padding: 6rem 0;
}

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

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

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

.faq__chevron {
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
    color: var(--text-muted);
}

.faq__question[aria-expanded="true"] .faq__chevron {
    transform: rotate(180deg);
    color: var(--purple);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

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

.faq__answer p {
    padding-bottom: 1.2rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════ */
.cta-final {
    padding: 6rem 0;
    text-align: center;
}

.cta-final__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-final__sub {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final__btn {
    margin-bottom: 1rem;
}

.cta-final__trust {
    font-size: 0.82rem;
    opacity: 0.7;
}

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

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
}

.footer__tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

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

.footer__sep {
    opacity: 0.3;
}

.footer__copy {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    opacity: 0.6;
}

@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);
}

.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;
}

.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);
}

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

.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;
}

.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;
}

.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;
}

.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);
}

.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;
    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);
    }
}

.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);
}

.gd-preview {
    flex: 1;
}

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

.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;
}

.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;
}

.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;
}

@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;
    }
}

.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);
}

/* ── Hero Mobile (banner) ── */
.hero-mobile { display: none; }
.hero-mobile__img { width: 100%; height: auto; display: block; }
.hero-mobile__cta-wrap {
    text-align: center; padding: 1.5rem 1.5rem 2rem;
    background: linear-gradient(to bottom, rgba(0,0,0,.9) 0%, #000 100%);
}
.hero-mobile__trust {
    font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 1rem; text-align: center;
}
@media (max-width: 767px) {
    .hero--desktop { display: none !important; }
    .hero-mobile { display: block; }
}