/* ========================================
   SFE Landing Page - CI Design
   Based on SteexInteractionTheme
   ======================================== */

:root {
    /* CI Colors from SteexInteractionTheme */
    --primary: #0ab39c;
    --primary-dark: #099885;
    --primary-light: #e0f5f3;
    --primary-200: #6fd4c4;

    --secondary: #495057;
    --secondary-light: #f3f6f9;

    --info: #299cdb;
    --info-light: #e3f3fb;

    --success: #0ab39c;
    --warning: #f7b84b;
    --warning-light: #fef5e5;
    --error: #f96766;
    --error-light: #fee9e9;

    /* Text Colors */
    --text-dark: #0f1114;
    --text-body: #495057;
    --text-muted: #878a99;
    --text-light: #adb5bd;

    /* Background Colors */
    --bg-body: #f3f6f9;
    --bg-white: #ffffff;
    --bg-card: #ffffff;

    /* Border Colors */
    --border: #e9ebec;
    --border-input: #adb5bd;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);

    /* Radius */
    --radius-sm: 4px;
    --radius: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-body);
    color: var(--text-body);
    line-height: 1.6;
    font-size: 15px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary, .btn-outline, .btn-text, .btn-white, .btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

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

.btn-outline {
    background: rgba(255, 255, 255, 0.75);
    color: var(--text-dark);
    border: 1px solid var(--border);
    backdrop-filter: blur(4px);
}
.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-text {
    background: transparent;
    color: var(--text-body);
}
.btn-text:hover {
    color: var(--primary);
}

.btn-white {
    background: white;
    color: var(--primary);
}
.btn-white:hover {
    background: var(--bg-body);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-block {
    width: 100%;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--primary);
}

/* Hide mobile-only nav actions on desktop */
.nav-mobile-actions {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-dark);
}

/* ========================================
   Hero
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, var(--bg-body) 100%);
    overflow: hidden;
}

/* Hero Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(243, 246, 249, 0.2) 100%
    );
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary-dark);
}

.hero-content > p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-trust {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 20px;
    background: rgba(255, 255, 255, 0.75);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(4px);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
}

.trust-item svg {
    color: var(--primary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.visual-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.main-card {
    margin-bottom: 16px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius);
}

.card-header span {
    font-weight: 600;
    color: var(--text-dark);
}

.upload-zone {
    padding: 40px;
    text-align: center;
    border: 2px dashed var(--border);
    margin: 20px;
    border-radius: var(--radius-md);
    background: var(--bg-body);
}

.upload-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    color: var(--primary);
}

.upload-zone p {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.upload-zone span {
    font-size: 13px;
    color: var(--text-muted);
}

.status-card {
    padding: 16px;
}

.status-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius);
    margin-bottom: 8px;
    background: var(--bg-body);
}

.status-row:last-child {
    margin-bottom: 0;
}

.status-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

.status-icon.encrypted {
    background: var(--primary-light);
    color: var(--primary);
}

.status-icon.verified {
    background: var(--info-light);
    color: var(--info);
}

.status-icon.scanned {
    background: var(--warning-light);
    color: var(--warning);
}

.status-text {
    flex: 1;
}

.status-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.status-badge {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.status-badge.success {
    background: var(--primary-light);
    color: var(--primary);
}

/* ========================================
   Section Header
   ======================================== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.section-label {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

/* ========================================
   Features
   ======================================== */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 28px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.2s;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-icon.blue {
    background: var(--info-light);
    color: var(--info);
}

.feature-icon.orange {
    background: var(--warning-light);
    color: var(--warning);
}

.feature-icon.purple {
    background: #f0e8ff;
    color: #7c3aed;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   Security
   ======================================== */
.security {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.security .section-header {
    margin-bottom: 60px;
}

/* Security Layers */
.security-layers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    position: relative;
}

.security-layer {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.security-layer:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(10, 179, 156, 0.15);
    border-color: var(--primary);
}

.layer-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(10, 179, 156, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.security-layer:hover .layer-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
}

.layer-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.security-layer:hover .layer-icon svg {
    color: white;
}

.layer-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.layer-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.layer-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(10, 179, 156, 0.3);
}

/* Security Center Shield */
.security-center {
    display: none;
}

/* Security Badges */
.security-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.security-badge-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px;
    background: white;
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.security-badge-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(10, 179, 156, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.badge-icon.swiss {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    font-size: 24px;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.badge-text span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ========================================
   How It Works
   ======================================== */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 0 20px;
}

.step-number {
    width: 32px;
    height: 32px;
    margin: 0 auto 16px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.step h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--border);
    margin-top: 80px;
}

/* ========================================
   Pricing
   ======================================== */
.pricing {
    padding: 80px 0;
    background: var(--bg-body);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    position: relative;
    padding: 32px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(10, 179, 156, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.pricing-header p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}

.pricing-price .currency {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
}

.pricing-price .amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.pricing-price .period {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-features {
    flex: 1;
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-body);
}

.pricing-features svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* ========================================
   CTA
   ======================================== */
.cta {
    padding: 80px 0;
    background: var(--primary);
}

.cta-content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.cta p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 60px 0 30px;
    background: var(--text-dark);
    color: var(--text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
    color: white;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    padding: 6px 0;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: var(--text-muted);
}

/* ========================================
   KYC Hero Visual
   ======================================== */
.card-icon.kyc {
    background: linear-gradient(135deg, var(--primary) 0%, #078a7a 100%);
    color: white;
}

.kyc-verify-zone {
    padding: 20px;
}

.kyc-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-body);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.kyc-step.completed {
    background: var(--primary-light);
    border-color: var(--primary);
}

.kyc-step-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--radius);
    color: var(--text-muted);
}

.kyc-step.completed .kyc-step-icon {
    color: var(--primary);
}

.kyc-step-text {
    flex: 1;
}

.kyc-step-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.kyc-step.completed .kyc-step-text span {
    color: var(--primary);
}

.kyc-check {
    color: var(--primary);
}

.kyc-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, #078a7a 100%);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    margin-top: 6px;
}

.status-icon.kyc-verified {
    background: linear-gradient(135deg, var(--primary-light) 0%, #c3f0ea 100%);
    color: var(--primary);
}

.status-icon.audit {
    background: var(--info-light);
    color: var(--info);
}

/* ========================================
   Feature Card Featured
   ======================================== */
.feature-card.featured {
    position: relative;
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    box-shadow: 0 4px 20px rgba(10, 179, 156, 0.15);
}

.feature-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 4px 12px;
    background: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-icon.kyc {
    background: linear-gradient(135deg, var(--primary) 0%, #078a7a 100%);
    color: white;
}

/* ========================================
   KYC Section
   ======================================== */
.kyc-section {
    padding: 80px 0;
    background: linear-gradient(180deg, white 0%, var(--primary-light) 50%, white 100%);
}

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

.kyc-content .section-label {
    margin-bottom: 16px;
}

.kyc-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.kyc-content > p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 32px;
}

.kyc-process {
    margin-bottom: 28px;
}

.kyc-process-step {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.kyc-process-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.kyc-process-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.kyc-process-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.kyc-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.kyc-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
}

.kyc-benefit svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* KYC Horizontal Steps */
.kyc-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kyc-steps-horizontal {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.kyc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    position: relative;
    transition: all 0.5s ease;
    opacity: 0.4;
    transform: scale(0.95);
    width: 120px;
    min-width: 120px;
}

.kyc-step.active {
    opacity: 1;
    transform: scale(1);
    background: var(--primary-light);
    box-shadow: 0 4px 20px rgba(10, 179, 156, 0.2);
}

.kyc-step.completed {
    opacity: 1;
    transform: scale(1);
}

.kyc-step-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.kyc-step.active .kyc-step-icon {
    background: var(--primary);
}

.kyc-step.completed .kyc-step-icon {
    background: var(--primary);
}

.kyc-step-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.kyc-step.active .kyc-step-icon svg,
.kyc-step.completed .kyc-step-icon svg {
    color: white;
}

.kyc-step-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.kyc-step.active .kyc-step-label,
.kyc-step.completed .kyc-step-label {
    color: var(--text-dark);
}

.kyc-step-check {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.kyc-step.completed .kyc-step-check {
    opacity: 1;
    transform: scale(1);
}

.kyc-step-check svg {
    width: 14px;
    height: 14px;
    color: white;
}

/* Arrows */
.kyc-step-arrow {
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.kyc-step-arrow svg {
    width: 20px;
    height: 20px;
}

.kyc-step-arrow.active {
    color: var(--primary);
}

/* Result Badge */
.kyc-step-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.kyc-step-result.active {
    opacity: 1;
    transform: scale(1);
}

.kyc-result-badge {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(10, 179, 156, 0.4);
}

.kyc-result-badge svg {
    width: 26px;
    height: 26px;
    color: white;
}

.kyc-step-result span {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Animation Keyframes */
@keyframes kycPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(10, 179, 156, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(10, 179, 156, 0); }
}

.kyc-step.active .kyc-step-icon {
    animation: kycPulse 2s ease infinite;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content > p {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

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

    .kyc-visual {
        order: -1;
    }

    .kyc-process {
        max-width: 400px;
        margin: 0 auto 28px;
        text-align: left;
    }

    .kyc-benefits {
        justify-content: center;
    }

    .security-layers {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .security-layer {
        padding: 20px 16px;
    }

    .layer-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 14px;
    }

    .layer-icon svg {
        width: 24px;
        height: 24px;
    }

    .layer-content h4 {
        font-size: 14px;
    }

    .layer-content p {
        font-size: 12px;
    }

    .layer-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .security-badges {
        gap: 16px;
    }

    .security-badge-item {
        padding: 12px 20px;
    }

    .badge-icon {
        width: 40px;
        height: 40px;
    }

    .badge-text strong {
        font-size: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Overlay */
    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(135deg, #0c7785 0%, #0a5c68 100%);
        padding: 100px 32px 40px;
        padding-bottom: calc(40px + env(safe-area-inset-bottom));
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        z-index: 998;
        overflow-y: auto;
    }

    .nav.active {
        display: flex;
    }

    .nav > a {
        color: #fff;
        font-size: 22px;
        font-weight: 600;
        padding: 18px 40px;
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.3s ease;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .nav > a:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: scale(1.02);
    }

    /* Mobile Navigation Buttons - Inside menu */
    .nav-mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 300px;
        margin-top: 32px;
        padding-top: 32px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .btn-mobile-login {
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.2);
        color: #fff !important;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }

    .btn-mobile-login:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .btn-mobile-register {
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        background: #fff;
        color: #0c7785 !important;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-mobile-register:hover {
        background: #f0f0f0;
        transform: scale(1.02);
    }

    /* Hide desktop header actions on mobile */
    .header-actions {
        display: none !important;
    }

    /* Hamburger Button */
    .mobile-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .mobile-toggle span {
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .mobile-toggle.active span {
        background: #fff;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero h1 {
        font-size: 32px;
    }

    /* Security Mobile */
    .security-layers {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .security-layer {
        padding: 24px 20px;
    }

    .layer-badge {
        top: -8px;
        right: 16px;
    }

    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .security-badge-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

    /* KYC Section Mobile */
    .kyc-steps-horizontal {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        width: 100%;
        max-width: 280px;
    }

    .kyc-step {
        width: 100%;
        padding: 16px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 16px;
    }

    .kyc-step-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .kyc-step-icon svg {
        width: 24px;
        height: 24px;
    }

    .kyc-step-label {
        text-align: left;
    }

    .kyc-step-check {
        margin-left: auto;
    }

    .kyc-step-arrow {
        transform: rotate(90deg);
        width: 24px;
        height: 24px;
    }

    .kyc-visual {
        width: 100%;
        padding: 0 16px;
    }

    .steps-grid {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

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

    .step-connector {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
    }

    /* KYC Section Extra Small */
    .kyc-content h2 {
        font-size: 24px;
    }

    .kyc-process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .kyc-process-content {
        text-align: center;
    }

    .kyc-benefits {
        flex-direction: column;
        align-items: center;
    }

    .kyc-benefit {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .kyc-steps-horizontal {
        padding: 16px;
    }

    .kyc-step {
        padding: 12px;
    }
}
