/* ============================================================
   güvenliSat — Home Page Styles
   ============================================================ */

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    position: relative;
    overflow: hidden;
}

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

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -100px;
    left: -100px;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: #7B61FF;
    bottom: -100px;
    right: 200px;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: #00A8FF;
    top: 40%;
    right: -50px;
    opacity: 0.1;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero>.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

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

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-0);
}

.hero-desc {
    font-size: 1.0rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--bg-0);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 28px;
    border-radius: var(--r-lg);
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 8px 32px rgba(0, 212, 170, 0.3);
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(0, 212, 170, 0.4);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-1);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 24px;
    border-radius: var(--r-lg);
    text-decoration: none;
    border: 1.5px solid var(--border);
    transition: all 0.25s;
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-2);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 480px;
}

.hero-card-stack {
    position: relative;
    width: 340px;
}

.floating-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 20px;
    box-shadow: var(--shadow-lg), var(--glow);
}

.card-main {
    position: relative;
    z-index: 3;
    animation: float-main 4s ease-in-out infinite;
}

@keyframes float-main {

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

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

.fc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.fc-badge {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
}

.fc-time {
    font-size: 0.72rem;
    color: var(--text-3);
}

.fc-product {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.fc-emoji {
    font-size: 2.5rem;
}

.fc-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-0);
}

.fc-location {
    font-size: 0.75rem;
    color: var(--text-2);
    margin-top: 2px;
}

.fc-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.fc-ai {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: #34D399;
    margin-left: 8px;
}

.fc-seller {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.fc-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), #00A8FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--bg-0);
    flex-shrink: 0;
}

.fc-seller-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-0);
}

.fc-seller-rate {
    font-size: 0.7rem;
    color: var(--text-3);
    margin-top: 1px;
}

.fc-escrow {
    margin-left: auto;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    border: 1px solid rgba(0, 212, 170, 0.25);
    padding: 3px 8px;
    border-radius: 20px;
}

.card-side {
    position: absolute;
    z-index: 2;
    width: 160px;
    padding: 14px;
}

.card-side-1 {
    top: -30px;
    right: -60px;
    animation: float-s1 4s ease-in-out infinite 0.5s;
    border-radius: var(--r-lg);
}

.card-side-2 {
    bottom: -20px;
    left: -60px;
    animation: float-s2 4s ease-in-out infinite 1s;
    border-radius: var(--r-lg);
}

@keyframes float-s1 {

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

    50% {
        transform: translateY(-8px) rotate(3deg);
    }
}

@keyframes float-s2 {

    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(8px) rotate(-3deg);
    }
}

.fc-title-sm {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-0);
    margin-top: 6px;
}

.fc-price-sm {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 3px;
}

.floating-badge {
    position: absolute;
    bottom: 100px;
    right: -40px;
    z-index: 4;
    background: rgba(0, 212, 170, 0.15);
    border: 1px solid rgba(0, 212, 170, 0.4);
    border-radius: 20px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    animation: float-badge 3s ease-in-out infinite 1.5s;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-badge 1.5s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(0, 212, 170, 0);
    }
}

@keyframes float-badge {

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

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

/* ---- STATS BAR ---- */
.stats-bar {
    background: var(--bg-1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 0 48px;
}

.stat-val {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-3);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* ---- CATEGORIES ---- */
.categories-section {
    background: var(--bg-0);
}

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

.category-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px 20px;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.25s;
    display: block;
}

.category-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.cat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.cat-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-0);
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.cat-count {
    font-size: 0.75rem;
    color: var(--text-3);
    position: relative;
    z-index: 1;
}

.cat-bg-icon {
    position: absolute;
    bottom: -10px;
    right: -4px;
    font-size: 4rem;
    opacity: 0.05;
    pointer-events: none;
    transform: rotate(-15deg);
}

.cat-elektronik:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.08);
}

.cat-giyim:hover {
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.08);
}

.cat-ev:hover {
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.08);
}

.cat-arac:hover {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.08);
}

.cat-spor:hover {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.08);
}

/* ---- USP SECTION ---- */
.usp-section {
    background: var(--bg-1);
    position: relative;
    overflow: hidden;
}

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

.usp-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.04;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.usp-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.usp-badge {
    display: inline-block;
    background: var(--primary-light);
    border: 1px solid rgba(0, 212, 170, 0.3);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

/* Comparison Table */
.comparison-table {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    margin-bottom: 48px;
    position: relative;
}

.ct-header,
.ct-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr;
    align-items: center;
}

.ct-header {
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 14px 24px;
}

.ct-platform {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-2);
    text-align: center;
    letter-spacing: 0.3px;
}

.ct-platform.ct-us {
    color: var(--primary);
    font-size: 0.82rem;
}

.ct-feature {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-0);
    padding-right: 20px;
}

.ct-row {
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

.ct-row:last-child {
    border-bottom: none;
}

.ct-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.ct-val {
    font-size: 0.82rem;
    font-weight: 600;
    text-align: center;
}

.ct-val.ct-us {
    color: var(--primary);
    font-weight: 700;
}

.ct-val.ct-good {
    color: #34D399;
}

.ct-val.ct-bad {
    color: var(--text-3);
}

.ct-val.ct-ok {
    color: var(--warning);
}

/* USP Cards */
.usp-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.usp-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    transition: all 0.25s;
}

.usp-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--glow);
    transform: translateY(-2px);
}

.usp-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.usp-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-0);
    margin-bottom: 8px;
}

.usp-card p {
    font-size: 0.82rem;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 16px;
}

.usp-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

.usp-link:hover {
    opacity: 0.75;
}

/* ---- HOW IT WORKS ---- */
.how-section {
    background: var(--bg-0);
}

.how-tabs {
    display: flex;
    gap: 4px;
    background: var(--bg-2);
    border-radius: var(--r-md);
    padding: 4px;
    width: fit-content;
    margin: 0 auto 40px;
}

.how-tab {
    padding: 10px 24px;
    border: none;
    background: transparent;
    color: var(--text-2);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: all 0.2s;
}

.how-tab.active {
    background: var(--primary);
    color: var(--bg-0);
}

.how-tab:not(.active):hover {
    color: var(--text-0);
}

.how-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: flex-start;
    max-width: 960px;
    margin: 0 auto;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(0, 212, 170, 0.2) 100%);
    margin-top: 52px;
    flex-shrink: 0;
}

.how-step {
    text-align: center;
    padding: 0 8px;
}

.step-num {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.step-body {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 20px 16px;
    transition: all 0.25s;
}

.step-body:hover {
    border-color: var(--border-hover);
    box-shadow: var(--glow);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.step-body h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-0);
    margin-bottom: 6px;
}

.step-body p {
    font-size: 0.78rem;
    color: var(--text-2);
    line-height: 1.5;
}

/* ---- FRAUD SECTION ---- */
.fraud-section {
    background: var(--bg-1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.fraud-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.fraud-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--warning);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.fraud-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-0);
    margin-bottom: 28px;
}

.fraud-facts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.fraud-fact {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.ff-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.ff-icon.danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.fraud-fact strong {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-0);
    display: block;
    margin-bottom: 2px;
}

.fraud-fact p {
    font-size: 0.8rem;
    color: var(--text-2);
    line-height: 1.5;
}

/* Fraud Analyzer Widget */
.fraud-analyzer {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 28px;
    position: sticky;
    top: calc(var(--nav-h) + 20px);
}

.fa-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.fa-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-0);
}

.fa-desc {
    font-size: 0.82rem;
    color: var(--text-2);
    margin-bottom: 16px;
    line-height: 1.5;
}

.fraud-analyzer textarea {
    width: 100%;
    min-height: 120px;
    background: var(--bg-2);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-1);
    outline: none;
    resize: vertical;
    transition: border-color 0.2s;
    line-height: 1.6;
}

.fraud-analyzer textarea::placeholder {
    color: var(--text-3);
}

.fraud-analyzer textarea:focus {
    border-color: var(--primary);
}

.fa-btn {
    width: 100%;
    margin-top: 12px;
    padding: 13px;
    background: var(--primary);
    color: var(--bg-0);
    border: none;
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.fa-btn:hover {
    background: var(--primary-dark);
}

.fa-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.fa-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(10, 14, 26, 0.3);
    border-top-color: var(--bg-0);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.fa-result {
    margin-top: 16px;
    padding: 14px;
    border-radius: var(--r-md);
    font-size: 0.82rem;
    line-height: 1.5;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fa-result.safe {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.25);
    color: #34D399;
}

.fa-result.warning {
    background: rgba(255, 159, 10, 0.1);
    border: 1px solid rgba(255, 159, 10, 0.25);
    color: var(--warning);
}

.fa-result.danger {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.25);
    color: #FF3B30;
}

.fa-score {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.fa-result strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
    background: var(--bg-0);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px;
    position: relative;
    transition: all 0.25s;
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--glow);
}

.tc-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08), rgba(0, 168, 255, 0.04));
    border-color: rgba(0, 212, 170, 0.2);
}

.tc-quote {
    font-size: 3rem;
    font-family: serif;
    color: var(--primary);
    opacity: 0.4;
    line-height: 0.8;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--text-1);
    line-height: 1.7;
    margin-bottom: 20px;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.tc-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), #00A8FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--bg-0);
    flex-shrink: 0;
}

.tc-author strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-0);
}

.tc-author span {
    font-size: 0.75rem;
    color: var(--text-3);
}

.tc-stars {
    margin-left: auto;
    font-size: 0.8rem;
}

/* ---- CTA SECTION ---- */
.cta-section {
    background: var(--bg-1);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -200px;
    left: -100px;
    opacity: 0.06;
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: #7B61FF;
    bottom: -150px;
    right: -100px;
    opacity: 0.06;
}

.cta-content {
    text-align: center;
    position: relative;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-0);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--text-2);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.btn-cta-primary {
    padding: 16px 32px;
    background: var(--primary);
    color: var(--bg-0);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--r-lg);
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 8px 32px rgba(0, 212, 170, 0.3);
}

.btn-cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-cta-secondary {
    padding: 16px 28px;
    border: 1.5px solid var(--border);
    color: var(--text-1);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--r-lg);
    text-decoration: none;
    transition: all 0.25s;
}

.btn-cta-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.cta-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: var(--text-3);
}

.cta-features span {
    font-weight: 500;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .usp-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .ct-header,
    .ct-row {
        grid-template-columns: 2fr 1.5fr 1fr 1fr;
    }

    .ct-row>div:last-child,
    .ct-header>div:last-child {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tc-featured {
        grid-column: span 1;
    }
}

@media (max-width: 1024px) {
    .hero>.container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .how-steps {
        grid-template-columns: 1fr 1fr;
    }

    .step-connector {
        display: none;
    }

    .fraud-grid {
        grid-template-columns: 1fr;
    }

    .fraud-analyzer {
        position: static;
    }
}

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

    .comparison-table {
        overflow-x: auto;
    }

    .usp-cards {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        gap: 32px;
    }

    .stat-item {
        padding: 0 24px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .how-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

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

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-trust-badges {
        gap: 12px;
    }

    .stats-grid {
        gap: 0;
        flex-direction: column;
    }

    .stat-divider {
        width: 80%;
        height: 1px;
        margin: 16px auto;
    }

    .stat-item {
        padding: 8px 0;
    }
}