/* ===== HERO ===== */
.hero {
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(143,144,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero__content { max-width: 520px; }
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: var(--color-primary-subtle);
    color: var(--color-primary);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}
.hero__title {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin-bottom: 1.25rem;
    color: var(--color-text);
}
.hero__description {
    font-size: var(--text-lg);
    line-height: 1.65;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}
.hero__actions { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 1rem; }
.hero__subtext {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* Hero right side — stacked widget preview */
.hero__visual {
    position: relative;
}
.hero-widget {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    padding: 1.5rem;
    position: relative;
}
.hero-widget__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border-light);
}
.hero-widget__title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
}
.hero-widget__count {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    background: var(--color-bg-offset);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
}
.hero-widget__cards { display: flex; flex-direction: column; gap: 0.75rem; }

/* Mini testimonial cards inside the hero widget */
.mini-card {
    display: flex;
    gap: 0.75rem;
    padding: 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #fff;
    transition: box-shadow 0.2s ease;
}
.mini-card:first-child {
    box-shadow: 0 2px 8px rgba(143,144,255,0.08);
    border-color: rgba(143,144,255,0.2);
}
.mini-card__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}
.mini-card__body { flex: 1; min-width: 0; }
.mini-card__top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.2rem;
}
.mini-card__name { font-size: 13px; font-weight: 600; color: var(--color-text); }
.mini-card__stars { font-size: 11px; color: #f59e0b; letter-spacing: 1px; }
.mini-card__text { font-size: 12.5px; color: var(--color-text-secondary); line-height: 1.55; }
.mini-card__meta { font-size: 11px; color: var(--color-text-muted); margin-top: 0.25rem; }

/* Floating badge on hero visual */
.hero-widget__badge {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(143,144,255,0.3);
}

/* ===== SOCIAL PROOF BAR ===== */
.proof-bar {
    padding: 2.5rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg-offset);
}
.proof-bar__inner {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.proof-stat {
    text-align: center;
}
.proof-stat__number {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
}
.proof-stat__label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-top: 0.125rem;
}

/* ===== FORM SHOWCASE ===== */
.form-showcase {
    padding: 6rem 0;
}
.form-showcase__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.form-showcase__text h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
.form-showcase__text p {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.form-showcase__features {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.form-feature {
    display: flex;
    gap: 0.625rem;
    align-items: flex-start;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.5;
}
.form-feature__check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 1px;
    font-weight: 700;
}

/* Mock form preview */
.mock-form {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    overflow: hidden;
}
.mock-form__browser {
    background: #f5f5f5;
    padding: 0.625rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #e5e5e5;
}
.mock-form__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4d4d4;
}
.mock-form__url {
    flex: 1;
    background: #fff;
    border-radius: 4px;
    padding: 0.2rem 0.625rem;
    font-size: 11px;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
    margin-left: 0.5rem;
}
.mock-form__body {
    padding: 2rem 1.5rem;
}
.mock-form__heading {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.mock-form__sub {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}
.mock-field {
    margin-bottom: 0.875rem;
}
.mock-field__label {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 0.25rem;
}
.mock-field__input {
    width: 100%;
    height: 34px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: #fff;
}
.mock-field__textarea {
    width: 100%;
    height: 64px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: #fff;
}
.mock-field__stars {
    color: #f59e0b;
    font-size: var(--text-lg);
    letter-spacing: 3px;
}
.mock-form__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 38px;
    border-radius: 8px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
    font-size: var(--text-sm);
    margin-top: 0.5rem;
    line-height: 1;
}

/* ===== DASHBOARD SHOWCASE ===== */
.dashboard-showcase {
    padding: 6rem 0;
    background: var(--color-bg-offset);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.dashboard-showcase__header {
    margin-bottom: 3rem;
}
.dashboard-showcase__header h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}
.dashboard-showcase__header p {
    color: var(--color-text-secondary);
    font-size: var(--text-lg);
    max-width: 520px;
    line-height: 1.6;
}
.dashboard-showcase__panels {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    align-items: start;
}

/* Mock moderation table */
.mock-panel {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    overflow: hidden;
}
.mock-panel__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid var(--color-border-light);
}
.mock-panel__title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
}
.mock-panel__tabs {
    display: flex;
    gap: 0;
}
.mock-panel__tab {
    font-size: 11px;
    font-weight: 500;
    padding: 0.25rem 0.625rem;
    color: var(--color-text-muted);
    border-bottom: 2px solid transparent;
}
.mock-panel__tab--active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

/* Mock table rows */
.mock-table { width: 100%; }
.mock-table__head {
    display: grid;
    grid-template-columns: 1.4fr 2fr 0.6fr 0.8fr;
    padding: 0.5rem 1.25rem;
    font-size: 10px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--color-border-light);
}
.mock-row {
    display: grid;
    grid-template-columns: 1.4fr 2fr 0.6fr 0.8fr;
    padding: 0.75rem 1.25rem;
    align-items: center;
    border-bottom: 1px solid var(--color-border-light);
    font-size: 12.5px;
}
.mock-row:last-child { border-bottom: none; }
.mock-row__name {
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
}
.mock-row__company {
    font-size: 11px;
    color: var(--color-text-muted);
}
.mock-row__text {
    color: var(--color-text-secondary);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mock-row__stars {
    font-size: 11px;
    color: #f59e0b;
    letter-spacing: 1px;
}
.mock-row__actions {
    display: flex;
    gap: 0.375rem;
}
.mock-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}
.mock-btn--approve {
    background: #dcfce7;
    color: #16a34a;
}
.mock-btn--reject {
    background: #fef2f2;
    color: #dc2626;
}
.mock-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    padding: 0.1rem 0.4rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.mock-badge--pending { background: #fef3c7; color: #92400e; }
.mock-badge--approved { background: #dcfce7; color: #166534; }

/* Mock widget config panel */
.mock-config__body {
    padding: 1.25rem;
}
.mock-config-field {
    margin-bottom: 1rem;
}
.mock-config-field:last-child { margin-bottom: 0; }
.mock-config-field__label {
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 0.3rem;
}
.mock-config-field__select {
    width: 100%;
    height: 32px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: #fff;
    padding: 0 0.5rem;
    font-size: 12px;
    color: var(--color-text);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23a3a3a3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
}
.mock-config-field__row {
    display: flex;
    gap: 0.5rem;
}
.mock-config-field__swatch {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: default;
}
.mock-config-field__swatch--active {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px var(--color-primary-subtle);
}
.mock-config-field__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mock-toggle {
    width: 36px;
    height: 20px;
    border-radius: 10px;
    background: var(--color-primary);
    position: relative;
}
.mock-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
}
.mock-toggle--off {
    background: var(--color-border);
}
.mock-toggle--off::after {
    right: auto;
    left: 2px;
}
.mock-config__preview-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 34px;
    border-radius: 8px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    margin-top: 1.25rem;
    line-height: 1;
}

@media (max-width: 960px) {
    .dashboard-showcase__panels { grid-template-columns: 1fr; }
}

/* ===== FORMAT PREVIEWS ===== */
.formats {
    padding: 6rem 0;
    background: var(--color-bg-offset);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.formats__header {
    margin-bottom: 3rem;
}
.formats__header h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}
.formats__header p {
    color: var(--color-text-secondary);
    font-size: var(--text-lg);
    max-width: 460px;
    line-height: 1.6;
}
.formats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

/* Individual format mock cards */
.fmt {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}
.fmt:hover { box-shadow: var(--shadow-md); }
.fmt__label {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.875rem 1.25rem 0;
}
.fmt__body { padding: 0.75rem 1.25rem 1.25rem; }

/* Tweet format */
.fmt-tweet { }
.fmt-tweet__inner {
    background: #fff;
    border: 1px solid #cfd9de;
    border-radius: 16px;
    padding: 0.875rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.fmt-tweet__header { display: flex; gap: 0.625rem; align-items: flex-start; margin-bottom: 0.375rem; }
.fmt-tweet__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}
.fmt-tweet__author { flex: 1; }
.fmt-tweet__name {
    font-weight: 700;
    font-size: 14px;
    color: #0f1419;
    line-height: 1.2;
}
.fmt-tweet__handle {
    font-size: 13px;
    color: #536471;
}
.fmt-tweet__x {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}
.fmt-tweet__text {
    font-size: 14.5px;
    color: #0f1419;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}
.fmt-tweet__meta {
    font-size: 13px;
    color: #536471;
}
.fmt-tweet__actions {
    display: flex;
    gap: 3rem;
    margin-top: 0.625rem;
    padding-top: 0.625rem;
    border-top: 1px solid #eff3f4;
}
.fmt-tweet__action {
    font-size: 12px;
    color: #536471;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

/* Facebook format */
.fmt-fb__inner {
    background: #fff;
    border: 1px solid #dadde1;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-family: Helvetica, Arial, sans-serif;
}
.fmt-fb__header { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 0.625rem; }
.fmt-fb__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}
.fmt-fb__name { font-weight: 700; font-size: 14px; color: #050505; line-height: 1.2; }
.fmt-fb__time { font-size: 12px; color: #65676b; }
.fmt-fb__text { font-size: 14px; color: #050505; line-height: 1.5; margin-bottom: 0.75rem; }
.fmt-fb__reactions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
    border-top: 1px solid #dadde1;
    font-size: 12px;
    color: #65676b;
}
.fmt-fb__reaction-icons {
    display: flex;
    gap: 0;
}
.fmt-fb__reaction-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-right: -4px;
}

/* Review card format */
.fmt-review__inner {
    text-align: center;
    padding: 0.5rem 0;
}
.fmt-review__stars {
    font-size: 20px;
    color: #f59e0b;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
}
.fmt-review__quote {
    font-size: 15px;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}
.fmt-review__divider {
    width: 32px;
    height: 2px;
    background: var(--color-border);
    margin: 0 auto 0.75rem;
}
.fmt-review__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    object-fit: cover;
}
.fmt-review__name {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text);
}
.fmt-review__role {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* Gallery format */
.fmt-gallery__inner { }
.fmt-gallery__image {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 0.75rem;
}
.fmt-gallery__stars {
    font-size: 13px;
    color: #f59e0b;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}
.fmt-gallery__text {
    font-size: 13.5px;
    color: var(--color-text-secondary);
    line-height: 1.55;
    margin-bottom: 0.625rem;
}
.fmt-gallery__footer { display: flex; gap: 0.5rem; align-items: center; }
.fmt-gallery__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}
.fmt-gallery__name { font-size: 12.5px; font-weight: 600; color: var(--color-text); }
.fmt-gallery__role { font-size: 11px; color: var(--color-text-muted); }

/* ===== HOW IT WORKS ===== */
.how {
    padding: 6rem 0;
}
.how__header {
    margin-bottom: 3.5rem;
}
.how__header h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}
.how__header p {
    color: var(--color-text-secondary);
    font-size: var(--text-lg);
    max-width: 420px;
    line-height: 1.6;
}
.how__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    counter-reset: step;
}
.step {
    position: relative;
    padding: 1.5rem;
    background: var(--color-bg-offset);
    border-radius: 12px;
    border: 1px solid var(--color-border-light);
}
.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 1rem;
}
.step__title {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.step__text {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ===== EMBED SECTION ===== */
.embed-section {
    padding: 6rem 0;
    border-top: 1px solid var(--color-border);
}
.embed-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.embed-section__text h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
.embed-section__text p {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.embed-section__code {
    background: #1a1b26;
    color: #a9b1d6;
    border-radius: 14px;
    padding: 1.5rem;
    font-family: var(--font-mono);
    font-size: 13.5px;
    line-height: 2;
    overflow-x: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    position: relative;
}
.embed-section__code::before {
    content: 'HTML';
    position: absolute;
    top: 0.625rem;
    right: 0.875rem;
    font-size: 10px;
    font-weight: 600;
    color: #565f89;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.embed-section__code .tag { color: #7aa2f7; }
.embed-section__code .attr { color: #9ece6a; }
.embed-section__code .str { color: #e0af68; }
.embed-section__code .cmt { color: #565f89; }

/* ===== CTA ===== */
.cta {
    padding: 6rem 0;
    background: var(--color-bg-offset);
    border-top: 1px solid var(--color-border);
}
.cta__inner {
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
}
.cta__inner h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
.cta__inner p {
    color: var(--color-text-secondary);
    font-size: var(--text-lg);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.cta__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__visual { max-width: 440px; }
    .form-showcase__inner { grid-template-columns: 1fr; }
    .formats__grid { grid-template-columns: 1fr; max-width: 480px; }
    .embed-section__inner { grid-template-columns: 1fr; }
    .how__steps { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .hero { padding: 4rem 0 3rem; }
    .hero__title { font-size: 2rem; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .proof-bar__inner { gap: 2rem; }
    .form-showcase, .formats, .how, .embed-section, .cta { padding: 4rem 0; }
}
