/* TaskEarn — homepage */

@keyframes heroGridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(56px, 56px); }
}

@keyframes heroGlowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
    50% { transform: translate(-12px, 16px) scale(1.05); opacity: 0.7; }
}

@keyframes benefitsPulse {
    0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.85; transform: translate(-50%, -50%) scale(1.06); }
}

@keyframes phScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes phPulse {
    0%, to { opacity: .4; transform: scale(.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Hero */
.hero {
    padding: 96px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff5f2 0, var(--bg-primary) 100%);
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg__grid {
    position: absolute;
    inset: -1px;
    background-image:
        linear-gradient(rgba(255, 114, 80, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 114, 80, 0.09) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 85% 75% at 42% 38%, #000 15%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse 85% 75% at 42% 38%, #000 15%, transparent 72%);
    animation: heroGridDrift 28s linear infinite;
}

.hero-bg__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    animation: heroGlowFloat 14s ease-in-out infinite;
}

.hero-bg__glow--1 {
    width: min(520px, 55vw);
    height: min(520px, 55vw);
    top: -12%;
    right: -8%;
    background: radial-gradient(circle, rgba(255, 114, 80, 0.22) 0%, transparent 68%);
}

.hero-bg__glow--2 {
    width: min(380px, 45vw);
    height: min(380px, 45vw);
    bottom: -18%;
    left: -6%;
    background: radial-gradient(circle, rgba(255, 114, 80, 0.14) 0%, rgba(80, 221, 255, 0.06) 40%, transparent 70%);
    animation-delay: -6s;
}

.hero .container-wide,
.hero-layout {
    position: relative;
    z-index: 1;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.hero-content {
    text-align: left;
    padding-top: 20px;
}

.hero h1 {
    font-size: 56px;
    text-transform: uppercase;
    letter-spacing: -.01em;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent) 0%, #ff9a7a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 0 36px;
    line-height: 1.6;
}

/* Search box */
.search-box {
    max-width: 660px;
    background: linear-gradient(180deg, hsla(0, 0%, 100%, .6) 0, hsla(0, 0%, 100%, 0) 60%), var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    padding: 22px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(255, 114, 80, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.search-box:hover {
    border-color: rgba(255, 114, 80, .28);
    box-shadow: 0 8px 20px rgba(16, 24, 40, .08), 0 24px 54px rgba(255, 114, 80, .1);
}

.search-box:focus-within {
    box-shadow: 0 8px 32px rgba(255, 114, 80, 0.16), 0 0 0 1px rgba(255, 114, 80, 0.12);
    transform: translateY(-1px);
}

.search-box::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 114, 80, 0.12) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}

.search-box > * {
    position: relative;
    z-index: 1;
}

.search-box__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.search-box__title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.search-box__badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: var(--accent-soft);
    color: var(--accent);
    white-space: nowrap;
}

.search-tabs {
    display: flex;
    gap: 2px;
    background: rgba(0, 0, 0, .03);
    border-radius: var(--radius-sm);
    padding: 3px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.search-tab {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background: transparent;
    min-width: 80px;
}

.search-tab.active {
    background: rgba(255, 114, 80, .12);
    color: var(--accent);
    box-shadow: inset 0 0 0 1px rgba(255, 114, 80, .2);
}

.search-tab:hover:not(.active) {
    color: var(--text-secondary);
}

.search-input-row {
    display: flex;
    gap: 10px;
    position: relative;
}

.search-input-row::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--text-muted);
    -webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E") center / contain no-repeat;
    pointer-events: none;
    z-index: 2;
    transition: background-color .3s ease;
}

.search-input-row:focus-within::before {
    background-color: var(--accent);
}

input.search-input-field {
    flex: 1;
    width: 100%;
    background: linear-gradient(180deg, hsla(0, 0%, 100%, .5), hsla(0, 0%, 100%, 0)), rgba(16, 24, 40, .035);
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    padding: 18px 60px 18px 52px;
    font-family: var(--font-body);
    font-size: 15.5px;
    color: var(--text-primary);
    font-weight: 500;
    outline: none;
    transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

input.search-input-field::placeholder {
    color: var(--text-muted);
    opacity: .85;
}

input.search-input-field:hover {
    border-color: rgba(255, 114, 80, .32);
}

input.search-input-field:focus {
    border-color: var(--accent);
    background: linear-gradient(180deg, hsla(0, 0%, 100%, .7), hsla(0, 0%, 100%, 0)), rgba(255, 114, 80, .04);
    box-shadow: 0 0 0 4px var(--accent-glow), 0 6px 18px rgba(255, 114, 80, .14);
}

.search-circle-btn {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8463 0, var(--accent) 48%, var(--accent-hover) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 114, 80, .34);
    transition: box-shadow .3s ease, transform .25s ease;
    border: none;
}

.search-circle-btn:hover {
    transform: translateY(-50%) scale(1.08);
}

.search-circle-btn:active {
    transform: translateY(-50%) scale(.96);
}

.search-hint {
    margin-top: 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.search-hint > * {
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: var(--radius-pill);
    background: rgba(16, 24, 40, .04);
    border: 1px solid transparent;
    font-weight: 500;
}

.search-hint-check {
    color: var(--success);
}

.search-hint-link {
    color: var(--accent);
    text-decoration: none;
    background: var(--accent-soft) !important;
    border-color: rgba(255, 114, 80, .22) !important;
    cursor: pointer;
}

.search-hint-item--free {
    color: var(--success) !important;
    font-weight: 600;
}

/* Hero trust row */
.hero-trust-row {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.hero-trust-item:hover {
    transform: translateY(-2px);
}

.hero-trust-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
}

.hero-trust-label {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.3;
}

.hero-trust-divider {
    width: 1px;
    height: 36px;
    background: var(--border-subtle);
}

/* Phone mock */
.hero-phone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0 24px 48px rgba(255, 114, 80, 0.12));
}

.phone-frame {
    width: 270px;
    height: 550px;
    background: #1a1a2e;
    border-radius: 44px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 28px;
    background: #1a1a2e;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 34px;
    overflow: hidden;
}

.ph-app {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ph-status {
    height: 36px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 5px;
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ph-topbar {
    display: flex;
    padding: 6px 12px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-card);
}

.ph-topbar-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ph-topbar-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.ph-topbar-name {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.ph-topbar-badge {
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #0cc36b, #0aae5e);
    color: #fff;
    letter-spacing: .02em;
}

.ph-scroll-area {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;
    mask-image: linear-gradient(180deg, transparent 0, #000 6%, #000 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 6%, #000 88%, transparent 100%);
}

.ph-scroll-track {
    flex: 1;
    display: flex;
    flex-direction: column;
    animation: phScroll 22s linear infinite;
    will-change: transform;
    min-height: 0;
}

.ph-scroll-summary {
    flex-shrink: 0;
    padding: 0 10px 8px;
    background: linear-gradient(0deg, var(--bg-primary) 70%, transparent);
}

.ph-scroll-set {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px 10px 4px;
    flex-shrink: 0;
}

/* Compact task rows in phone mock */
.ph-task {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    gap: 8px;
    align-items: center;
    padding: 8px 9px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    min-height: 52px;
}

.ph-task__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    background: var(--accent-soft);
    color: var(--accent);
}

.ph-task--social .ph-task__icon { background: rgba(26, 115, 232, .12); color: #1a73e8; }
.ph-task--review .ph-task__icon { background: rgba(255, 184, 0, .15); color: #e37400; }
.ph-task--like .ph-task__icon { background: rgba(227, 57, 44, .1); color: #e3392c; }
.ph-task--visit .ph-task__icon { background: var(--info-bg); color: var(--info); }
.ph-task--wb .ph-task__icon { background: rgba(13, 71, 161, .1); color: #0d47a1; }

.ph-task__body {
    min-width: 0;
}

.ph-task__body strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: .02em;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.ph-task__body span {
    display: block;
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.2;
}

.ph-task__side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
}

.ph-task__price {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    white-space: nowrap;
}

.ph-task__meta {
    font-size: 8px;
    font-weight: 600;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.ph-task__meta i {
    font-size: 7px;
    color: var(--accent);
}

.ph-task-summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    align-items: center;
    padding: 8px 10px;
    margin-top: 2px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border-accent);
}

.ph-task-summary__ring {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    background: var(--bg-card);
}

.ph-task-summary__text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: 1px;
}

.ph-task-summary__text span {
    font-size: 8px;
    color: var(--text-muted);
    line-height: 1.2;
}

.ph-task-summary__arrow {
    font-size: 9px;
    color: var(--accent);
    opacity: .7;
}

/* Legacy mini-card aliases (kept for compatibility) */
.ph-mini-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 8px 9px;
    flex-shrink: 0;
}

.ph-mini-title {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.ph-mini-cost {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
}

.phone-caption {
    text-align: center;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.phone-caption-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: phPulse 2s ease-in-out infinite;
}

.phone-caption-text {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* Benefits */
.benefits-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.benefits-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.benefits-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.benefits-bg__glow--center {
    position: absolute;
    width: min(640px, 80vw);
    height: min(320px, 40vw);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(255, 114, 80, 0.14) 0%, transparent 70%);
    filter: blur(90px);
    animation: benefitsPulse 8s ease-in-out infinite;
}

.benefits-section .container {
    position: relative;
    z-index: 1;
}

.benefits-header {
    text-align: center;
    margin-bottom: 48px;
}

.benefits-header h2 {
    font-size: 42px;
    text-transform: uppercase;
}

.benefits-header p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-top: 12px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.benefits-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    min-width: 100px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.benefits-stat strong {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--accent);
}

.benefits-stat span {
    font-size: 12px;
    color: var(--text-muted);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    border-color: rgba(255, 114, 80, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 114, 80, 0.12);
}

.benefit-card h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
}

.benefit-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    background: var(--accent-soft);
    color: var(--accent);
}

/* How it works */
.how-section {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.how-bg__glow {
    position: absolute;
    width: min(500px, 70vw);
    height: 200px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(255, 114, 80, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.how-section .container {
    position: relative;
    z-index: 1;
}

.how-header {
    text-align: center;
    margin-bottom: 56px;
}

.how-header h2 {
    font-size: 36px;
    text-transform: uppercase;
}

.how-header p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-top: 12px;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-item {
    text-align: center;
    padding: 24px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(255, 114, 80, 0.1);
    border-color: rgba(255, 114, 80, 0.25);
}

.step-number-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
}

.step-tag {
    display: inline-block;
    margin: 10px 0 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    background: var(--accent-soft);
    color: var(--accent);
}

.step-tag--free {
    background: var(--success-bg);
    color: var(--success);
}

.step-item h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 260px;
    margin: 0 auto 12px;
}

.step-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.step-features li i {
    color: var(--success);
}

/* Showcase */
.showcase-section {
    padding: 64px 0;
    background: var(--bg-secondary);
    position: relative;
}

.showcase-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.showcase-header {
    text-align: center;
    margin-bottom: 32px;
}

.showcase-header h2 {
    font-size: 42px;
    text-transform: uppercase;
}

.showcase-header p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-top: 12px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
}

.showcase-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.showcase-tags span i {
    color: var(--accent);
}

.showcase-tags span:hover {
    border-color: var(--border-accent);
    color: var(--accent);
    background: var(--accent-soft);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 28px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.showcase-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.showcase-card-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 10px;
}

.showcase-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: 16px;
}

.showcase-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.showcase-alert.alert-warn { background: #fff8e1; color: #b8860b; }
.showcase-alert.alert-danger { background: #ffebe9; color: #e3392c; }
.showcase-alert.alert-ok { background: #e5f7e8; color: #0cc36b; }
.showcase-alert.alert-accent { background: var(--accent-soft); color: var(--accent); }

.showcase-reward {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
}

.showcase-reward small {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.showcase-task-meta {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.showcase-task-meta i {
    color: var(--accent);
    width: 18px;
}

.showcase-task-btn {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    background: var(--accent);
    color: #fff;
    box-shadow: 0 2px 10px var(--accent-glow);
    text-align: center;
    text-decoration: none;
}

.showcase-task-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.showcase-footer {
    text-align: center;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border-subtle);
}

.showcase-footer p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 16px;
}

.showcase-sample-btn {
    display: inline-block !important;
    width: auto !important;
    padding: 12px 28px !important;
    text-decoration: none !important;
}

/* Trust */
.trust-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.trust-bg__glow--1 {
    position: absolute;
    width: 400px;
    height: 400px;
    top: -10%;
    right: -5%;
    background: radial-gradient(circle, rgba(255, 114, 80, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.trust-bg__glow--2 {
    position: absolute;
    width: 320px;
    height: 320px;
    bottom: -5%;
    left: -5%;
    background: radial-gradient(circle, rgba(80, 221, 255, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.trust-section .container {
    position: relative;
    z-index: 1;
}

.trust-header {
    text-align: center;
    margin-bottom: 48px;
}

.trust-header h2 {
    font-size: 36px;
    text-transform: uppercase;
}

.trust-header p {
    color: var(--text-secondary);
    max-width: 560px;
    margin: 12px auto 0;
    font-size: 15px;
}

.trust-rating-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 32px auto;
    padding: 20px 28px;
    max-width: 720px;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(255, 114, 80, 0.08);
}

.trust-rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.trust-rating-score strong {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--accent);
    line-height: 1;
}

.trust-rating-stars {
    color: #ffb800;
    font-size: 14px;
    letter-spacing: 2px;
}

.trust-rating-divider {
    width: 1px;
    height: 48px;
    background: var(--border-subtle);
}

.trust-rating-quote {
    flex: 1;
    min-width: 200px;
    font-size: 15px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.5;
}

.trust-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 114, 80, 0.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 500;
}

.stat-sublabel {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 28px 0 36px;
}

.trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
}

.trust-badges span i {
    color: var(--accent);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #ffca50;
    font-size: 14px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 12px;
    align-items: center;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, .05);
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent);
    font-size: 14px;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
}

.testimonial-badge {
    font-size: 10px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-family: var(--font-heading);
    font-weight: 600;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.faq-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: start;
}

.faq-intro h2 {
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.faq-intro p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.faq-intro-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.faq-intro-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.faq-intro-card i {
    font-size: 22px;
    color: var(--accent);
}

.faq-intro-card strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.faq-intro-card span {
    font-size: 12px;
    color: var(--text-muted);
}

.faq-intro-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: var(--accent);
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: var(--transition);
}

.faq-intro-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--bg-card);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.open {
    border-color: var(--border-accent);
    box-shadow: 0 4px 16px rgba(255, 114, 80, 0.08);
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 18px 56px;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    cursor: pointer;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font: inherit;
}

.faq-q-icon {
    flex-shrink: 0;
    font-size: 18px;
    color: var(--accent);
}

.faq-q-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    flex: 1;
}

.faq-chevron {
    width: 28px;
    height: 28px;
    background: rgba(255, 114, 80, .08);
    border: 1px solid rgba(255, 114, 80, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--accent);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .4s ease;
}

.faq-answer-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    padding-bottom: 16px;
}

/* Final CTA */
.final-cta {
    padding: 64px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255, 114, 80, 0.12) 0%, transparent 60%),
        linear-gradient(rgba(255, 114, 80, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 114, 80, 0.04) 1px, transparent 1px);
    background-size: auto, 40px 40px, 40px 40px;
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: 34px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.final-cta-sub {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.final-cta-input-row {
    display: flex;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

input.final-cta-input {
    flex: 1 1 180px;
    min-width: 0;
    background: rgba(0, 0, 0, .03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition);
}

input.final-cta-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.final-cta-input-row .search-btn {
    flex-shrink: 0;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 2px 10px var(--accent-glow);
    transition: var(--transition);
}

.final-cta-input-row .search-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* Dark theme */
[data-theme="dark"] .hero {
    background: linear-gradient(180deg, #141620 0, var(--bg-primary) 100%);
}

[data-theme="dark"] .hero-bg__grid {
    background-image:
        linear-gradient(rgba(255, 114, 80, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 114, 80, 0.06) 1px, transparent 1px);
}

[data-theme="dark"] .search-box {
    background: linear-gradient(180deg, hsla(0, 0%, 100%, .035) 0, hsla(0, 0%, 100%, 0) 60%), var(--bg-card);
    border-color: rgba(255, 114, 80, .2);
}

[data-theme="dark"] input.search-input-field {
    background: linear-gradient(180deg, hsla(0, 0%, 100%, .04), hsla(0, 0%, 100%, 0)), hsla(0, 0%, 100%, .045);
}

[data-theme="dark"] .search-hint > * {
    background: hsla(0, 0%, 100%, .05);
}

[data-theme="dark"] .benefit-card,
[data-theme="dark"] .stat-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .showcase-card,
[data-theme="dark"] .step-item,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .faq-intro-card {
    background: var(--bg-card);
}

[data-theme="dark"] .benefits-stat {
    background: var(--bg-secondary);
}

[data-theme="dark"] .showcase-alert.alert-warn { background: rgba(255, 202, 80, .1); color: #f5c542; }
[data-theme="dark"] .showcase-alert.alert-danger { background: rgba(227, 57, 44, .1); color: #e86a5a; }
[data-theme="dark"] .showcase-alert.alert-ok { background: rgba(12, 195, 107, .1); color: #3ddc8a; }

[data-theme="dark"] .ph-task--social .ph-task__icon { background: rgba(26, 115, 232, .2); color: #5b9cf5; }
[data-theme="dark"] .ph-task--review .ph-task__icon { background: rgba(227, 116, 0, .2); color: #ffb74d; }
[data-theme="dark"] .ph-task--like .ph-task__icon { background: rgba(194, 24, 91, .2); color: #f06292; }
[data-theme="dark"] .ph-task--wb .ph-task__icon { background: rgba(13, 71, 161, .2); color: #64b5f6; }

[data-theme="dark"] .phone-frame {
    background: #0a0b10;
}

[data-theme="dark"] .faq-section {
    background: var(--bg-primary);
}

[data-theme="dark"] input.final-cta-input {
    background: hsla(0, 0%, 100%, .05);
}

[data-theme="dark"] .testimonial-avatar {
    background: hsla(0, 0%, 100%, .06);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 { font-size: 42px; }
    .hero-layout { grid-template-columns: 1fr; text-align: center; }
    .hero-phone { display: none; }
    .hero-content { text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-trust-row { justify-content: center; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-row { grid-template-columns: repeat(2, 1fr); }
    .showcase-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-stats-row { grid-template-columns: repeat(2, 1fr); }
    .faq-layout { grid-template-columns: 1fr; gap: 32px; }
    .faq-intro h2 { text-align: center; }
    .faq-intro .section-label { justify-content: center; }
    .faq-intro p { text-align: center; }
    .faq-intro-btn { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 36px; }
    .hero-trust-row { flex-direction: column; gap: 16px; }
    .hero-trust-divider { display: none; }
    .benefits-grid,
    .showcase-grid,
    .steps-row,
    .testimonials-grid,
    .trust-stats-row { grid-template-columns: 1fr; }
    .faq-item.open .faq-answer { padding-left: 18px; }
    .search-box__head { flex-direction: column; align-items: flex-start; }
    .trust-rating-banner { flex-direction: column; text-align: center; }
    .trust-rating-divider { width: 60px; height: 1px; }
    .search-input-row { flex-direction: column; }
    .search-circle-btn {
        position: static;
        transform: none;
        width: 100%;
        height: 44px;
        border-radius: var(--radius-pill);
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .benefit-card { padding: 24px; }
    .showcase-card { padding: 20px; }
    .final-cta-input-row { flex-direction: column; }
    .final-cta-input-row .search-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg__grid,
    .hero-bg__glow,
    .benefits-bg__glow--center,
    .ph-scroll-track,
    .home-ticker__inner {
        animation: none;
    }

    .benefit-card:hover,
    .showcase-card:hover,
    .step-item:hover,
    .stat-card:hover,
    .search-box:focus-within {
        transform: none !important;
    }
}

/* ── Home quick access ── */
.home-quick {
    padding: 0 0 40px;
    margin-top: -20px;
    position: relative;
    z-index: 2;
}

.home-quick__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.home-quick__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    text-align: center;
}

.home-quick__card i {
    font-size: 22px;
    color: var(--accent);
}

.home-quick__card span {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.home-quick__card small {
    font-size: 11px;
    color: var(--text-muted);
}

.home-quick__card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.home-quick__card--accent {
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-card) 100%);
    border-color: var(--border-accent);
}

.home-ticker {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    padding: 10px 20px;
    overflow: hidden;
}

.home-ticker__label {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--accent);
    white-space: nowrap;
}

.home-ticker__label i {
    margin-right: 6px;
}

.home-ticker__track {
    overflow: hidden;
    flex: 1;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.home-ticker__inner {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: ticker-scroll 30s linear infinite;
}

.home-ticker__inner span {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.home-ticker__inner span i {
    color: var(--accent);
    margin-right: 6px;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
    .home-quick__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .home-quick__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-ticker {
        flex-direction: column;
        border-radius: var(--radius-lg);
        align-items: flex-start;
    }

    .home-ticker__track {
        width: 100%;
    }
}
