/* ===================================
   Index — Forensic Light 메인페이지
   pasteurithink.co.kr 릴게임/먹튀검증
   =================================== */

/* ── HERO: 분할 레이아웃 + 검증 카드 ── */
.fx-hero {
    position: relative;
    padding: 60px 0 80px;
    background: var(--pt-bg);
    overflow: hidden;
}

.fx-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--pt-grad-mesh);
    pointer-events: none;
}

.fx-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100%;
    background-image:
        linear-gradient(rgba(10,20,40,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,20,40,0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}

.fx-hero-grid {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 540px;
}

.fx-hero-left { max-width: 600px; }

.fx-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    background: var(--pt-surface);
    border: 1px solid var(--pt-border);
    border-radius: 100px;
    font-size: 12px; font-weight: 600;
    color: var(--pt-t-strong);
    margin-bottom: 28px;
    box-shadow: var(--pt-sh-xs);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.fx-hero-badge .fx-badge-dot {
    width: 7px; height: 7px;
    background: var(--pt-mint);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0,200,150,0.15);
    animation: fx-pulse 2.4s ease-in-out infinite;
}

@keyframes fx-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(0,200,150,0.15); }
    50% { box-shadow: 0 0 0 8px rgba(0,200,150,0.05); }
}

.fx-hero-h1 {
    font-family: 'IBM Plex Sans KR', 'Inter', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: var(--pt-t-ink);
    line-height: 1.12;
    margin-bottom: 24px;
    letter-spacing: -0.035em;
}

.fx-hero-h1 .fx-mark {
    display: inline-block;
    position: relative;
    color: var(--pt-mint-deep);
    white-space: nowrap;
}

.fx-hero-h1 .fx-mark::after {
    content: '';
    position: absolute;
    left: -2px; right: -2px; bottom: 4px;
    height: 12px;
    background: var(--pt-mint-soft);
    z-index: -1;
    border-radius: 4px;
}

.fx-hero-p {
    font-size: 16px; color: var(--pt-t-mute);
    line-height: 1.8; margin-bottom: 36px;
    max-width: 520px;
}

.fx-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.fx-hero-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--pt-border);
}

.fx-hero-meta-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--pt-t-mute);
    font-weight: 500;
}

.fx-hero-meta-item svg {
    color: var(--pt-mint);
    flex-shrink: 0;
}

/* 히어로 우측 - 검증 카드 스택 */
.fx-hero-right {
    position: relative;
    height: 100%;
    min-height: 480px;
}

.fx-verify-card {
    position: absolute;
    background: var(--pt-surface);
    border: 1px solid var(--pt-border);
    border-radius: var(--pt-radius-lg);
    padding: 22px;
    box-shadow: var(--pt-sh-lg);
    transition: all 0.4s var(--pt-ease-out);
}

.fx-verify-card-1 {
    top: 0; right: 0;
    width: 320px;
    transform: rotate(2deg);
    z-index: 3;
}

.fx-verify-card-2 {
    top: 160px; left: 0;
    width: 290px;
    transform: rotate(-3deg);
    z-index: 2;
}

.fx-verify-card-3 {
    bottom: 20px; right: 30px;
    width: 280px;
    transform: rotate(1.5deg);
    z-index: 1;
}

.fx-verify-card:hover {
    transform: rotate(0) translateY(-6px);
    box-shadow: var(--pt-sh-xl);
    z-index: 10;
}

.fx-verify-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 14px;
}

.fx-verify-domain {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px; font-weight: 600;
    color: var(--pt-t-ink);
}

.fx-verify-status {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px; font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.fx-status-safe { background: var(--pt-mint-soft); color: var(--pt-mint-deep); }
.fx-status-danger { background: var(--pt-coral-soft); color: var(--pt-coral); }
.fx-status-warn { background: var(--pt-amber-soft); color: #B87514; }

.fx-verify-status::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.fx-verify-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px dashed var(--pt-border);
    border-bottom: 1px dashed var(--pt-border);
    margin-bottom: 14px;
}

.fx-verify-meta-item {
    display: flex; flex-direction: column; gap: 2px;
}

.fx-verify-meta-label {
    font-size: 10px; font-weight: 600;
    color: var(--pt-t-faint);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: 'Inter', sans-serif;
}

.fx-verify-meta-value {
    font-size: 13px; font-weight: 600;
    color: var(--pt-t-strong);
    font-family: 'JetBrains Mono', monospace;
}

.fx-verify-foot {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px;
    color: var(--pt-t-mute);
}

.fx-verify-foot strong { color: var(--pt-t-ink); font-weight: 700; }

/* ── 트러스트 스트립 ── */
.fx-trust {
    background: var(--pt-ink);
    padding: 28px 0;
    position: relative;
    overflow: hidden;
}

.fx-trust::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(at 10% 50%, rgba(0,200,150,0.08) 0%, transparent 40%),
        radial-gradient(at 90% 50%, rgba(37,99,235,0.05) 0%, transparent 40%);
}

.fx-trust-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: center;
}

.fx-trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 8px;
    position: relative;
}

.fx-trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 40px;
    background: rgba(255,255,255,0.08);
}

.fx-trust-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(0,200,150,0.12);
    border: 1px solid rgba(0,200,150,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--pt-mint-bright);
    flex-shrink: 0;
}

.fx-trust-text {
    display: flex; flex-direction: column;
}

.fx-trust-num {
    font-family: 'Inter', sans-serif;
    font-size: 22px; font-weight: 800;
    color: var(--pt-t-white);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.fx-trust-label {
    font-size: 12px;
    color: var(--pt-t-on-dark-mute);
    margin-top: 3px;
    font-weight: 500;
}

/* ── 핵심 가이드 — 비대칭 그리드 ── */
.fx-guides {
    padding: 100px 0;
    background: var(--pt-bg);
    position: relative;
}

.fx-sec-header {
    margin-bottom: 56px;
    max-width: 720px;
}

.fx-sec-header.center { margin-left: auto; margin-right: auto; text-align: center; }

.fx-sec-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 6px 14px;
    background: var(--pt-mint-soft);
    border-radius: 100px;
    color: var(--pt-mint-deep);
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
}

.fx-sec-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--pt-mint);
    border-radius: 50%;
}

.fx-sec-title {
    font-family: 'IBM Plex Sans KR', sans-serif;
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 800; color: var(--pt-t-ink);
    letter-spacing: -0.03em;
    line-height: 1.25;
}

.fx-sec-subtitle {
    font-size: 15px; color: var(--pt-t-mute);
    margin-top: 14px; line-height: 1.7;
}

.fx-guides-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.fx-guide-card {
    background: var(--pt-surface);
    border: 1px solid var(--pt-border);
    border-radius: var(--pt-radius-lg);
    padding: 32px;
    transition: all 0.35s var(--pt-ease-out);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.fx-guide-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--pt-radius-lg);
    padding: 1px;
    background: var(--pt-grad-mint);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.fx-guide-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pt-sh-lg);
}

.fx-guide-card:hover::after { opacity: 1; }

.fx-guide-card.fx-guide-feature {
    grid-column: 1;
    grid-row: 1 / 3;
    background: var(--pt-grad-ink);
    border-color: transparent;
    color: var(--pt-t-on-dark);
    padding: 40px;
    overflow: hidden;
}

.fx-guide-card.fx-guide-feature::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 320px; height: 320px;
    background: var(--pt-mint);
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
}

.fx-guide-card.fx-guide-feature::after { display: none; }

.fx-guide-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 700;
    color: var(--pt-t-faint);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.fx-guide-feature .fx-guide-num { color: var(--pt-mint-bright); }

.fx-guide-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--pt-mint-soft);
    color: var(--pt-mint-deep);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s var(--pt-ease);
}

.fx-guide-feature .fx-guide-icon {
    background: rgba(0,200,150,0.18);
    color: var(--pt-mint-bright);
    border: 1px solid rgba(0,200,150,0.3);
    width: 60px; height: 60px;
}

.fx-guide-card:hover .fx-guide-icon {
    transform: scale(1.08) rotate(-4deg);
}

.fx-guide-card h3 {
    font-family: 'IBM Plex Sans KR', sans-serif;
    font-size: 20px; font-weight: 700;
    color: var(--pt-t-ink);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.fx-guide-feature h3 {
    color: var(--pt-t-white);
    font-size: 28px;
    line-height: 1.25;
}

.fx-guide-card p {
    font-size: 14px; color: var(--pt-t-mute);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.fx-guide-feature p {
    color: var(--pt-t-on-dark-mute);
    font-size: 15px;
    margin-bottom: 32px;
}

.fx-guide-link {
    font-weight: 700; font-size: 13px;
    color: var(--pt-mint-deep);
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap 0.2s;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.fx-guide-feature .fx-guide-link {
    color: var(--pt-mint-bright);
    padding: 12px 20px;
    background: rgba(0,200,150,0.12);
    border: 1px solid rgba(0,200,150,0.25);
    border-radius: 10px;
    font-size: 14px;
    align-self: flex-start;
}

.fx-guide-card:hover .fx-guide-link { gap: 12px; }

/* ── 검증 프로세스 — 타임라인 ── */
.fx-process {
    padding: 100px 0;
    background: var(--pt-surface);
    position: relative;
    border-top: 1px solid var(--pt-border);
    border-bottom: 1px solid var(--pt-border);
}

.fx-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    position: relative;
}

.fx-process-grid::before {
    content: '';
    position: absolute;
    top: 36px; left: 60px; right: 60px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--pt-border-strong) 0 8px, transparent 8px 16px);
    z-index: 0;
}

.fx-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.fx-process-num {
    width: 72px; height: 72px;
    margin: 0 auto 22px;
    background: var(--pt-surface);
    border: 2px solid var(--pt-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 22px; font-weight: 800;
    color: var(--pt-t-ink);
    transition: all 0.35s var(--pt-ease);
    position: relative;
}

.fx-process-step:hover .fx-process-num {
    background: var(--pt-mint);
    border-color: var(--pt-mint);
    color: var(--pt-t-white);
    transform: scale(1.08);
    box-shadow: var(--pt-sh-mint);
}

.fx-process-step h3 {
    font-size: 17px; font-weight: 700;
    color: var(--pt-t-ink);
    margin-bottom: 10px;
    letter-spacing: -0.015em;
}

.fx-process-step p {
    font-size: 13px; color: var(--pt-t-mute);
    line-height: 1.7;
    padding: 0 8px;
}

/* ── 왜 우리? — 좌측 헤더 + 우측 카드 ── */
.fx-why {
    padding: 100px 0;
    background: var(--pt-bg);
}

.fx-why-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: flex-start;
}

.fx-why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.fx-why-card {
    background: var(--pt-surface);
    border: 1px solid var(--pt-border);
    border-radius: var(--pt-radius-lg);
    padding: 28px 24px;
    transition: all 0.3s var(--pt-ease);
    position: relative;
}

.fx-why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pt-sh-md);
    border-color: var(--pt-mint);
}

.fx-why-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--pt-bg-soft);
    color: var(--pt-t-ink);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s;
}

.fx-why-card:hover .fx-why-icon {
    background: var(--pt-mint-soft);
    color: var(--pt-mint-deep);
}

.fx-why-card h3 {
    font-size: 16px; font-weight: 700;
    color: var(--pt-t-ink); margin-bottom: 10px;
    line-height: 1.4;
    letter-spacing: -0.015em;
}

.fx-why-card p {
    font-size: 13px; color: var(--pt-t-mute);
    line-height: 1.7;
}

/* ── FAQ — 모던 아코디언 ── */
.fx-faq {
    padding: 100px 0;
    background: var(--pt-surface);
    border-top: 1px solid var(--pt-border);
}

.fx-faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: flex-start;
}

.fx-faq-left {
    position: sticky;
    top: 100px;
}

.fx-faq-left .fx-sec-tag { margin-bottom: 18px; }

.fx-faq-left h2 {
    font-family: 'IBM Plex Sans KR', sans-serif;
    font-size: 36px; font-weight: 800;
    color: var(--pt-t-ink);
    line-height: 1.2; margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.fx-faq-left p {
    font-size: 15px; color: var(--pt-t-mute);
    line-height: 1.75;
    margin-bottom: 24px;
}

.fx-faq-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 20px;
    background: var(--pt-mint-soft);
    color: var(--pt-mint-deep);
    border-radius: 10px;
    font-size: 13px; font-weight: 700;
    transition: all 0.2s;
}
.fx-faq-cta:hover { background: var(--pt-mint); color: var(--pt-t-white); transform: translateY(-1px); }

.fx-faq-list {
    display: flex; flex-direction: column; gap: 12px;
}

.fx-faq-item {
    background: var(--pt-bg);
    border: 1px solid var(--pt-border);
    border-radius: var(--pt-radius);
    overflow: hidden;
    transition: all 0.3s var(--pt-ease);
}

.fx-faq-item[open] {
    background: var(--pt-surface);
    border-color: var(--pt-mint);
    box-shadow: var(--pt-sh-sm);
}

.fx-faq-item summary {
    padding: 22px 24px;
    font-weight: 700; font-size: 15px;
    color: var(--pt-t-ink); cursor: pointer;
    list-style: none;
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 16px;
    letter-spacing: -0.015em;
}

.fx-faq-item summary::-webkit-details-marker { display: none; }

.fx-faq-icon {
    width: 28px; height: 28px;
    background: var(--pt-surface);
    border: 1px solid var(--pt-border);
    border-radius: 8px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--pt-t-mute);
    transition: all 0.3s var(--pt-ease);
    position: relative;
}

.fx-faq-icon::before,
.fx-faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.3s var(--pt-ease);
}
.fx-faq-icon::before { width: 12px; height: 2px; }
.fx-faq-icon::after { width: 2px; height: 12px; }

.fx-faq-item[open] .fx-faq-icon {
    background: var(--pt-mint);
    border-color: var(--pt-mint);
    color: var(--pt-t-white);
}

.fx-faq-item[open] .fx-faq-icon::after { transform: scaleY(0); }

.fx-faq-a {
    padding: 0 24px 22px;
    font-size: 14px; color: var(--pt-t-body);
    line-height: 1.8;
}

/* ── CTA — 미드나잇 + 민트 글로우 ── */
.fx-cta {
    padding: 100px 0;
    background: var(--pt-bg);
}

.fx-cta-box {
    background: var(--pt-grad-ink);
    border-radius: var(--pt-radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.fx-cta-box::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 500px;
    background: var(--pt-mint);
    filter: blur(140px);
    opacity: 0.2;
    pointer-events: none;
}

.fx-cta-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    pointer-events: none;
}

.fx-cta-content {
    position: relative;
    z-index: 1;
}

.fx-cta-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px;
    background: rgba(0,200,150,0.15);
    border: 1px solid rgba(0,200,150,0.3);
    border-radius: 100px;
    font-size: 11px; font-weight: 700;
    color: var(--pt-mint-bright);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: 'Inter', sans-serif;
}

.fx-cta-box h2 {
    font-family: 'IBM Plex Sans KR', sans-serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800; color: var(--pt-t-white);
    margin-bottom: 18px; line-height: 1.2;
    letter-spacing: -0.03em;
}

.fx-cta-box h2 .fx-cta-mark {
    color: var(--pt-mint-bright);
}

.fx-cta-box p {
    font-size: 16px; color: var(--pt-t-on-dark-mute);
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto; margin-right: auto;
}

.fx-cta-btns {
    display: flex; gap: 12px;
    justify-content: center; flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .fx-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .fx-hero-right { min-height: 440px; max-width: 480px; margin: 0 auto; }
    .fx-guides-grid { grid-template-columns: 1fr 1fr; }
    .fx-guide-card.fx-guide-feature { grid-column: 1 / 3; grid-row: 1; }
    .fx-faq-layout { grid-template-columns: 1fr; gap: 32px; }
    .fx-faq-left { position: static; }
    .fx-why-layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
    .fx-hero { padding: 40px 0 60px; }
    .fx-hero-h1 { font-size: 34px; }
    .fx-hero-meta { flex-wrap: wrap; gap: 14px; }
    .fx-hero-right { min-height: 420px; }
    .fx-verify-card-1 { width: 280px; right: 0; }
    .fx-verify-card-2 { width: 260px; left: 0; top: 140px; }
    .fx-verify-card-3 { width: 250px; right: 10px; bottom: 0; }

    .fx-trust-row { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
    .fx-trust-item:nth-child(2)::after { display: none; }
    .fx-trust-item:not(:last-child)::after { display: none; }

    .fx-guides { padding: 64px 0; }
    .fx-guides-grid { grid-template-columns: 1fr; gap: 14px; }
    .fx-guide-card.fx-guide-feature { grid-column: 1; padding: 32px 26px; }
    .fx-guide-feature h3 { font-size: 24px; }
    .fx-guide-card { padding: 26px 22px; }

    .fx-process { padding: 64px 0; }
    .fx-process-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 16px; margin-top: 44px; }
    .fx-process-grid::before { display: none; }

    .fx-why { padding: 64px 0; }
    .fx-why-cards { grid-template-columns: 1fr; }

    .fx-faq { padding: 64px 0; }
    .fx-faq-left h2 { font-size: 28px; }
    .fx-faq-item summary { padding: 18px 20px; font-size: 14px; }
    .fx-faq-a { padding: 0 20px 18px; }

    .fx-cta { padding: 64px 0; }
    .fx-cta-box { padding: 56px 28px; border-radius: 20px; }
}

@media (max-width: 480px) {
    .fx-hero-btns { flex-direction: column; width: 100%; }
    .fx-hero-btns .pt-btn { width: 100%; justify-content: center; }
    .fx-hero-right { min-height: 380px; }
    .fx-verify-card { padding: 18px; }
    .fx-verify-card-1 { width: 260px; }
    .fx-verify-card-2 { width: 240px; }
    .fx-verify-card-3 { width: 230px; }
    .fx-cta-btns { flex-direction: column; width: 100%; }
    .fx-cta-btns .pt-btn { width: 100%; justify-content: center; }
    .fx-cta-box { padding: 48px 20px; }
}