:root {
    --primary: #635bff;
    --dark: #0a2540;
    --slate: #425466;
    --bg-light: #f6f9fc;
    --white: #ffffff;
    --max-width: 1266px;
    --section-spacing: 90px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); line-height: 1.6; }
h1, h2, h3 { font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: -0.02em; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 30px; }

nav { position: fixed; top: 0; width: 100%; background: rgba(255,255,255,0.9); backdrop-filter: blur(15px); z-index: 1000; border-bottom: 1px solid #e6ebf1; } 
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 90px; } 
.nav-links { display: flex; list-style: none; align-items: center; gap: 40px; } 
.nav-links a { text-decoration: none; color: var(--slate); font-weight: 600; font-size: 15px; }

.logo { font-size: 20px; font-weight: 800; color: var(--dark); text-decoration: none; }
.logo span { color: var(--primary); }        

@media (max-width: 1024px) { .nav-links { gap: 20px; } .nav-links a { font-size: 14px; margin-bottom: 20px; } }

@media (max-width: 768px) { nav { position: relative; background: rgba(255,255,255,0.95); } .nav-inner { flex-direction: column; height: auto; padding: 10px; } .nav-links { flex-direction: column; gap: 15px; align-items: flex-start; } .nav-links a { font-size: 13px; } }
@media (max-width: 768px) { .logo {margin-top: 10px; }}

.hero { min-height: 110vh; display: flex; align-items: center; padding: 110px 0; background: radial-gradient(circle at 0% 0%, rgba(99, 91, 255, 0.05) 0%, transparent 40%), #ffffff; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.hero-img-wrapper { position: relative; z-index: 1; height: 800px; display: flex; align-items: center; justify-content: flex-end; }
.hero-img-wrapper img { height: 100%; width: auto; max-width: none; object-fit: contain; filter: drop-shadow(0 40px 80px rgba(0,0,0,0.1)); transition: 0.5s ease; }
.hero-img-wrapper:hover img { transform: scale(1.02); }
.hero-text h1 { font-size: 76px; line-height: 0.95; letter-spacing: -0.04em; margin-bottom: 24px; color: var(--dark); }
.hero-text .lead { font-size: 22px; color: var(--slate); margin-bottom: 48px; max-width: 580px; line-height: 1.5; }
.hero-cta-group { display: flex; align-items: center; gap: 40px; }
.hero-stats { display: flex; gap: 30px; border-left: 2px solid #e6ebf1; padding-left: 30px; }

.stat-item b { font-family: 'Plus Jakarta Sans'; font-size: 18px; display: block; color: var(--dark); line-height: 1.2; }
.stat-item span { font-size: 13px; color: var(--slate); font-weight: 500; }
.hero-trust { margin-top: 80px; padding-top: 40px; border-top: 1px solid #e6ebf1; }
.trust-label { font-family: 'JetBrains Mono', monospace; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; color: #999; margin-bottom: 20px; display: block; }
.trust-logos { display: flex; gap: 50px; filter: grayscale(1); opacity: 0.5; font-weight: 800; font-size: 28px; letter-spacing: -1px; color: var(--dark); }
.hero-img { width: 100%; border-radius: 40px; box-shadow: 0 40px 100px -20px rgba(10, 37, 64, 0.2); transform: perspective(1000px) rotateY(-8deg) rotateX(2deg); }

.cap-section { padding: 160px 0; background-color: #f9fafb; border-top: 1px solid #e6ebf1; border-bottom: 1px solid #e6ebf1; } 
.cap-header { text-align: center; margin-bottom: 80px; } 
.cap-header h2 { font-size: 48px; margin-bottom: 32px; color: var(--dark); letter-spacing: -0.03em; } 
.tab-nav { display: inline-flex; background: #fff; padding: 10px; border-radius: 14px; margin-bottom: 60px; box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08); border: 1px solid #e2e8f0; gap: 12px; } 
.tab-btn { padding: 14px 28px; cursor: pointer; border: none; background: transparent; font-weight: 700; color: #64748b; border-radius: 10px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); font-size: 15px; letter-spacing: -0.01em; position: relative; } 
.tab-btn:hover { color: var(--primary); background: rgba(99, 91, 255, 0.06); } 
.tab-btn.active { color: var(--primary); background: #f8fafc; box-shadow: inset 0 0 0 1px rgba(99, 91, 255, 0.15), 0 4px 12px rgba(99, 91, 255, 0.08); } 
.grid-9 { display: none; grid-template-columns: repeat(3, 1fr); gap: 24px; } 
.grid-9.active { display: grid; } 
.card-pro { background: #fff; padding: 40px; border: 1px solid #e6ebf1; border-radius: 16px; transition: 0.4s ease; position: relative; } 
.card-pro:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); } 
.card-num { font-family: 'JetBrains Mono'; font-size: 12px; color: var(--primary); margin-bottom: 15px; display: block; font-weight: 700; } 
.card-pro h3 { font-size: 20px; margin-bottom: 12px; color: var(--dark); } 
.card-pro p { font-size: 15px; color: var(--slate); line-height: 1.6; } 
.grid-9 { display: none; grid-template-columns: 1fr; gap: 20px; } 
@media (min-width: 771px) { .grid-9 { grid-template-columns: repeat(2, 1fr); } } 
@media (min-width: 1024px) { .grid-9 { grid-template-columns: repeat(3, 1fr); } }


/* AI */
.ai-icon { width: 48px; height: 48px; background: #f8fafc; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 32px; color: var(--primary); } 
.ai-card h3 { font-size: 24px; color: var(--dark); margin-bottom: 16px; letter-spacing: -0.02em; } 
.ai-card p { color: var(--slate); font-size: 16px; line-height: 1.6; margin-bottom: 24px; } 
.ai-tag-list { display: flex; flex-wrap: wrap; gap: 8px; } 
.ai-tag { font-family: 'JetBrains Mono'; font-size: 11px; background: #f1f5f9; color: #64748b; padding: 4px 10px; border-radius: 4px; font-weight: 700; text-transform: uppercase; } 
.ai-domain-section { padding: clamp(60px, 10vw, 160px) 0; background-color: #ffffff; border-bottom: 1px solid #e6ebf1; } 
.ai-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: clamp(40px, 8vw, 80px); } 
@media (min-width: 771px) { .ai-grid { grid-template-columns: repeat(2, 1fr); } } 
@media (min-width: 1100px) { .ai-grid { grid-template-columns: repeat(3, 1fr); } } 
.ai-card { background: #ffffff; padding: clamp(24px, 5vw, 48px); border-radius: 24px; border: 1px solid #e2e8f0; transition: 0.4s ease; position: relative; overflow: hidden; height: 100%; } 
.ai-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(0,0,0,0.05); } 
.ai-card::before { content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--primary); opacity: 0; transition: 0.3s; } 
.ai-card:hover::before { opacity: 1; } 
.section-header-centered h2 { font-size: clamp(32px, 8vw, 48px); color: var(--dark); letter-spacing: -0.04em; margin-bottom: 20px; } 

/* reability */
.rel-section { padding: 160px 0; background-color: #f9fafb; border-top: 1px solid #e6ebf1; overflow: hidden; } 
.rel-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: start; } 
.rel-sticky { position: sticky; top: 140px; } 
.rel-sticky h2 { font-size: 56px; line-height: 1.1; margin-bottom: 30px; letter-spacing: -0.04em; color: var(--dark); } 
.rel-sticky p { color: var(--slate); font-size: 20px; max-width: 440px; margin-bottom: 40px; line-height: 1.6; } 
.rel-badge { display: inline-block; padding: 8px 16px; background: rgba(99, 91, 255, 0.08); color: var(--primary); border: 1px solid rgba(99, 91, 255, 0.2); border-radius: 6px; font-family: 'JetBrains Mono'; font-size: 12px; margin-bottom: 20px; font-weight: 700; } 
.spec-list { border-top: 2px solid #f1f5f9; } 
.spec-item { padding: 45px 0; border-bottom: 1px solid #f1f5f9; display: flex; gap: 40px; transition: 0.3s; } 
.spec-item:hover { padding-left: 10px; } 
.spec-num { font-family: 'JetBrains Mono'; color: var(--primary); font-size: 18px; font-weight: 700; padding-top: 4px; } 
.spec-content h4 { font-size: 24px; margin-bottom: 12px; letter-spacing: -0.02em; color: var(--dark); } 
.spec-content p { color: var(--slate); font-size: 17px; line-height: 1.6; } 
.rel-btn { display: inline-flex; align-items: center; gap: 12px; margin-top: 20px; padding: 14px 28px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; color: var(--dark); text-decoration: none; font-weight: 700; font-size: 15px; transition: 0.3s; } 
.rel-btn:hover { background: var(--dark); color: #fff; transform: translateY(-2px); } 
.rel-section { padding: clamp(60px, 10vw, 160px) 0; background-color: #f9fafb; border-top: 1px solid #e6ebf1; overflow: hidden; } 
.rel-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; } 
@media (min-width: 771px) { .rel-grid { grid-template-columns: 1fr 1.2fr; gap: 100px; } .rel-sticky { position: sticky; top: 140px; } } 
.rel-sticky h2 { font-size: clamp(32px, 7vw, 56px); line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.04em; color: var(--dark); } 
.rel-sticky p { color: var(--slate); font-size: clamp(16px, 2vw, 20px); max-width: 440px; margin-bottom: 30px; line-height: 1.6; } 
.spec-item { padding: 30px 0; border-bottom: 1px solid #f1f5f9; display: flex; flex-direction: column; gap: 15px; transition: 0.3s; } 
@media (min-width: 480px) { .spec-item { flex-direction: row; gap: 40px; padding: 45px 0; } } 

/* audir */
.audit-section { padding: 160px 0; background-color: #ecebeb0e; border-top: 1px solid #e6ebf1; border-bottom: 1px solid #e6ebf1; } 
.audit-container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: center; } 
.audit-content h2 { color: var(--dark); font-size: 64px; line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 24px; } 
.audit-content p { color: var(--slate); font-size: 20px; line-height: 1.6; margin-bottom: 48px; max-width: 540px; } 
.diag-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 50px; } 
.diag-item { border-left: 3px solid #e2e8f0; padding-left: 24px; transition: 0.3s; } 
.diag-item:hover { border-left-color: var(--primary); } 
.diag-item h5 { color: var(--dark); font-family: 'JetBrains Mono'; font-size: 13px; text-transform: uppercase; margin-bottom: 10px; letter-spacing: 1px; } 
.diag-item span { color: var(--slate); font-size: 15px; line-height: 1.5; display: block; } 
.audit-form-group { display: flex; flex-direction: column; gap: 12px; max-width: 500px; } 
.audit-input-row { display: flex; gap: 12px; } 
.audit-input-row input { flex: 1; padding: 16px 20px; border-radius: 8px; border: 1px solid #e2e8f0; background: #fff; font-size: 14px; transition: 0.3s; outline: none; } 
.audit-input-row input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.05); }
.audit-submit-btn { background: var(--dark); color: #fff; padding: 16px 32px; border: none; border-radius: 8px; font-weight: 700; font-size: 15px; cursor: pointer; transition: 0.3s; width: 100%; }
.audit-submit-btn:hover { background: var(--primary); transform: translateY(-2px); }
.telemetry-sidebar { background: #ffffff; border-radius: 24px; padding: 40px; border: 1px solid #e2e8f0; font-family: 'JetBrains Mono', monospace; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.tel-header { font-size: 11px; color: #94a3b8; margin-bottom: 25px; display: block; border-bottom: 1px solid #f1f5f9; padding-bottom: 10px; }
.tel-line { display: block; font-size: 13px; color: var(--slate); padding: 8px 0; border-bottom: 1px solid #f8fafc; }
.tel-val { color: var(--dark); float: right; font-weight: 700; }
.status-indicator { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: #10b981; font-weight: 700; margin-bottom: 15px; }
.status-dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }
.audit-section { padding: clamp(60px, 10vw, 160px) 0; background-color: #ecebeb0e; border-top: 1px solid #e6ebf1; border-bottom: 1px solid #e6ebf1; }
.audit-container { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 992px) { .audit-container { grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: center; } }
.audit-input-row { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 600px) { .audit-input-row { flex-direction: row; } }
.audit-content h2 { color: var(--dark); font-size: clamp(34px, 8vw, 64px); line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 24px; }
.diag-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
@media (min-width: 771px) { .diag-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.telemetry-sidebar { background: #ffffff; border-radius: 24px; padding: clamp(20px, 5vw, 40px); border: 1px solid #e2e8f0; font-family: 'JetBrains Mono', monospace; }

/* support  */
.hero-image { animation: float 6s ease-in-out infinite; }

.support-section { padding: 160px 0; background-color: #f9fafb; border-bottom: 1px solid #e6ebf1; }
.sup-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 100px; align-items: start; }
.sup-header h2 { font-size: 48px; margin-bottom: 24px; color: var(--dark); letter-spacing: -0.03em; }
.sup-header p { color: var(--slate); font-size: 19px; line-height: 1.6; margin-bottom: 32px; }
.email-priority { display: inline-flex; align-items: center; gap: 12px; padding: 16px 24px; background: #f8fafc; border: 1px solid var(--primary); border-radius: 8px; color: var(--dark); font-weight: 700; text-decoration: none; transition: 0.3s; }
.email-priority:hover { background: var(--primary); color: #fff; }
.protocol-list { display: grid; grid-template-columns: 1fr; gap: 40px; }
.proto-card { padding-left: 30px; border-left: 2px solid #e2e8f0; position: relative; }
.proto-card::before { content: ""; position: absolute; left: -2px; top: 0; height: 40px; width: 2px; background: var(--primary); }
.proto-card h4 { font-family: 'JetBrains Mono'; font-size: 14px; color: var(--primary); margin-bottom: 12px; text-transform: uppercase; }
.proto-card h3 { font-size: 22px; color: var(--dark); margin-bottom: 12px; }
.proto-card p { color: var(--slate); font-size: 16px; line-height: 1.6; margin: 0; }
.proto-tag { display: inline-block; margin-top: 15px; font-size: 11px; font-weight: 800; color: #64748b; background: #f1f5f9; padding: 4px 10px; border-radius: 4px; }

.support-section { padding: 160px 0; background-color: #f9fafb; border-bottom: 1px solid #e6ebf1; }
.sup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.sup-header { display: flex; flex-direction: column; align-items: flex-start; }
.sup-header h2 { font-size: 52px; margin-bottom: 24px; color: var(--dark); letter-spacing: -0.04em; line-height: 1.1; }
.sup-header p { color: var(--slate); font-size: 19px; line-height: 1.6; margin-bottom: 32px; max-width: 480px; }
.sup-pricing-badge { display: inline-block; padding: 16px 24px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; margin-bottom: 32px; }
.sup-pricing-badge .label { display: block; font-size: 11px; font-family: 'JetBrains Mono'; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.sup-pricing-badge .price { display: block; font-size: 22px; font-weight: 800; color: var(--dark); }
.sup-pricing-badge .period { font-size: 15px; font-weight: 400; color: var(--slate); }
.email-priority { display: inline-flex; align-items: center; gap: 12px; padding: 18px 32px; background: var(--dark); color: #fff; border-radius: 10px; font-weight: 700; text-decoration: none; transition: 0.3s; }
.email-priority:hover { background: var(--primary); transform: translateY(-2px); }
.protocol-list { display: grid; gap: 48px; }
.proto-card { padding-left: 32px; border-left: 2px solid #eef2f6; transition: 0.3s; }
.proto-card:hover { border-left-color: var(--primary); }
.proto-card h4 { font-family: 'JetBrains Mono'; font-size: 12px; color: var(--primary); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.proto-card h3 { font-size: 20px; color: var(--dark); margin-bottom: 10px; letter-spacing: -0.01em; }
.proto-card p { color: var(--slate); font-size: 15px; line-height: 1.6; }

.status-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 37, 64, 0.4); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; z-index: 1000; opacity: 0; transition: 0.3s; }
.status-overlay.active { display: flex; opacity: 1; }
.status-modal { background: #ffffff; width: 100%; max-width: 500px; border-radius: 24px; padding: 40px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); position: relative; border: 1px solid #e2e8f0; }
.close-status { position: absolute; top: 24px; right: 24px; cursor: pointer; color: #94a3b8; border: none; background: none; font-size: 20px; }
.modal-header { margin-bottom: 30px; border-bottom: 1px solid #f1f5f9; padding-bottom: 20px; }
.modal-header h3 { font-size: 22px; color: var(--dark); margin: 0; display: flex; align-items: center; gap: 10px; }
.status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 30px; }
.stat-box { padding: 20px; background: #f8fafc; border-radius: 12px; border: 1px solid #eef2f6; }
.stat-box label { display: block; font-size: 11px; font-family: 'JetBrains Mono'; color: #94a3b8; text-transform: uppercase; margin-bottom: 8px; }
.stat-box span { font-size: 16px; font-weight: 700; color: var(--dark); }
.incident-report { padding: 20px; background: #fffcf0; border: 1px solid #fef3c7; border-radius: 12px; }
.incident-report h4 { color: #92400e; font-size: 14px; margin: 0 0 8px 0; display: flex; align-items: center; gap: 8px; }
.incident-report p { font-size: 13px; color: #b45309; line-height: 1.5; margin: 0; }
.pulse-green { width: 10px; height: 10px; background: #10b981; border-radius: 50%; box-shadow: 0 0 0 rgba(16, 185, 129, 0.4); animation: pulseGreen 2s infinite; }
@keyframes pulseGreen { 0% { box-shadow: 0 0 0 0px rgba(16, 185, 129, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0px rgba(16, 185, 129, 0); } }        
.live-log { margin-top: 20px; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: #94a3b8; background: #fafafa; padding: 12px; border-radius: 8px; border: 1px solid #eee;text-align: right; }
.log-line { display: block; margin-bottom: 4px; }
.log-time { color: var(--primary); margin-right: 8px; }
.status-link{ text-decoration: none;}        

.footer { background: var(--dark); color: var(--white); padding: 100px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 80px; }
.footer-col h4 { color: #8898aa; font-size: 14px; text-transform: uppercase; margin-bottom: 25px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 15px; }
.footer-col a { color: #adbdcc; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; margin-top: 60px; display: flex; justify-content: space-between; font-size: 14px; color: #8898aa; }

.btn-primary { background: var(--primary); color: #fff; padding: 16px 32px; border-radius: 50px; text-decoration: none; font-weight: 700; border: none; cursor: pointer; display: inline-block; transition: 0.3s; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(99,91,255,0.2); }

.cap-section, .ai-domain-section, .rel-section, .audit-section, .support-section { padding: var(--section-spacing) 0; }
@media (max-width: 613px) { html, body { overflow-x: hidden; width: 100%; position: relative; } .trust-logos { gap: 20px; font-size: 18px; flex-wrap: wrap; justify-content: center; } .hero-stats { flex-direction: column; gap: 15px; padding-left: 0; border-left: none; border-top: 2px solid #e6ebf1; padding-top: 20px; align-items: center; } footer { width: 100%; padding: 60px 0 30px; } .footer-grid { grid-template-columns: 1fr !important; gap: 40px; text-align: center; } .tab-nav { display: flex; width: 100%; box-sizing: border-box; overflow-x: auto; justify-content: flex-start; padding: 8px; } .audit-input-row { flex-direction: column; width: 100%; } .audit-input-row input { width: 100%; } }
@media (max-width: 1024px) { .container { padding: 0 40px; overflow: hidden; } .hero-grid { gap: 40px; } .hero-img-wrapper { height: 600px; } .hero-img-wrapper img { object-fit: contain; } .hero-text h1 { font-size: 56px; } .hero-cta-group { flex-direction: column; align-items: flex-start; gap: 24px; } .hero-stats { border-left: none; padding-left: 0; border-top: 1px solid #e6ebf1; padding-top: 20px; } }
footer { background: var(--dark); color: var(--white); padding: 100px 0 60px; }
@media (max-width: 768px) { footer { padding: 60px 0 40px; } .footer-bottom { padding: 30px 20px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); } }
@media (max-width: 768px) { html, body { overflow-x: hidden; width: 100%; position: relative; } .container { width: 100% !important; max-width: 100vw; padding-left: 24px !important; padding-right: 24px !important; box-sizing: border-box; overflow: hidden; } .hero-stats, .hero-cta-group, .trust-logos, .audit-input-row { width: 100% !important; margin-right: 0 !important; margin-left: 0 !important; flex-wrap: wrap; } .footer-grid { width: 100%; grid-template-columns: 1fr !important; padding-right: 0; } }

/* Contact page      */
.cn-contact-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: start; }
.cn-form-container { display: flex; flex-direction: column; gap: 32px; }
.cn-input-row { display: flex; gap: 16px; }
.cn-control { width: 100%; padding: 16px 20px; border-radius: 8px; border: 1px solid #e2e8f0; background: #ffffff; font-size: 14px; color: var(--slate); outline: none; font-family: 'Inter', sans-serif; transition: all 0.2s ease; }
.cn-control:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.05); }
.cn-select { appearance: none; -webkit-appearance: none; background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="%23635bff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m6 9 6 6 6-6"/></svg>'); background-repeat: no-repeat; background-position: right 20px center; background-size: 16px; padding-right: 48px; cursor: pointer; line-height: 1.6; height: 56px; }
.cn-textarea { min-height: 160px; resize: vertical; }
.cn-select option { padding: 12px; background: #fff; color: var(--dark); font-family: 'Inter', sans-serif; }
.cn-custom-select { position: relative; width: 100%; cursor: pointer; font-family: 'Inter', sans-serif; }
.cn-select-trigger { width: 100%; padding: 16px 20px; border-radius: 8px; border: 1px solid #e2e8f0; background: #fff; font-size: 14px; color: var(--dark); display: flex; align-items: center; justify-content: space-between; height: 56px; transition: all 0.3s ease; }
.cn-select-trigger::after { content: ""; width: 16px; height: 16px; background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="%23635bff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m6 9 6 6 6-6"/></svg>'); background-size: contain; background-repeat: no-repeat; margin-right: 5px; }
.cn-options-list { position: absolute; top: calc(100% + 5px); left: 0; right: 0; background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 100; display: none; overflow: hidden; }
.cn-option-item { padding: 13px 20px; font-size: 14px; color: var(--slate); transition: all 0.2s; border-bottom: 1px solid #f8fafc; }
.cn-option-item:last-child { border-bottom: none; }
.cn-option-item:hover { background: #f1f5f9; color: var(--primary); padding-left: 25px; }
.cn-custom-select.open .cn-options-list { display: block; }
@media (max-width: 992px) { .cn-contact-layout { grid-template-columns: 1fr; gap: 60px; } }
@media (max-width: 768px) { .cn-input-row { flex-direction: column; } }
.service-panel { padding: 100px 0; border-bottom: 1px solid #f1f5f9; }
.gray-panel { background: #f8fafc; }
.panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.panel-grid.reverse { direction: rtl; }
.panel-grid.reverse .panel-info { direction: ltr; }
.panel-grid.reverse .panel-visual { direction: ltr; }
.panel-visual { position: relative; border-radius: 24px; overflow: hidden; height: 550px; }
.panel-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.visual-caption { position: absolute; bottom: 20px; left: 20px; background: rgba(255, 255, 255, 0.95); padding: 12px 20px; border-radius: 12px; font-size: 13px; font-weight: 700; color: var(--dark); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.panel-tag { font-family: 'JetBrains Mono', monospace; color: var(--primary); font-size: 12px; font-weight: 800; margin-bottom: 15px; }
.panel-info h2 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.panel-info p { font-size: 1.2rem; color: #64748b; margin-bottom: 40px; max-width: 90%; }
.spec-grid-9 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.spec-box { background: #fff; border: 1px solid #e2e8f0; padding: 15px; border-radius: 12px; font-size: 14px; font-weight: 600; transition: all 0.3s ease; }
.spec-box span { display: block; color: var(--primary); font-family: 'JetBrains Mono', monospace; font-size: 10px; margin-bottom: 4px; }
.spec-box:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
@media (max-width: 1024px) { .panel-grid, .panel-grid.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; } .panel-visual { height: 400px; } }
.trust-banner { padding: 160px 0; background-color: #ffffff; border-top: 1px solid #f1f5f9; position: relative; }
.trust-flex { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 120px; align-items: center; }
.trust-content .pillar-code { font-family: 'JetBrains Mono', monospace; color: #24b47e; font-size: 12px; font-weight: 700; letter-spacing: 0.2em; margin-bottom: 24px; display: block; }
.trust-content h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 4.5rem; line-height: 0.95; letter-spacing: -3px; color: #0f172a; margin-bottom: 32px; }
.trust-content p { font-family: 'Inter', sans-serif; font-size: 1.25rem; line-height: 1.6; color: #64748b; max-width: 580px; margin-bottom: 60px; }
.experience-stats { display: flex; gap: 80px; border-top: 1px solid #e2e8f0; padding-top: 50px; }
.exp-stat { display: flex; flex-direction: column; gap: 12px; }
.exp-stat b { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 3.5rem; font-weight: 800; color: #0f172a; line-height: 1; }
.exp-stat span { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #94a3b8; }
.trust-visual { position: relative; height: 600px; }
.trust-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; box-shadow: 0 50px 100px -20px rgba(15, 23, 42, 0.15); filter: saturate(1.1); }
@media (max-width: 1100px) { .trust-flex { grid-template-columns: 1fr; gap: 80px; } .trust-content h2 { font-size: 3.5rem; } .trust-visual { height: 450px; } .experience-stats { gap: 40px; } }
@media (max-width: 600px) { .experience-stats { flex-direction: column; gap: 40px; } }

/* Faqs */
.faq-section { padding: 140px 0; background: #ffffff; border-top: 1px solid #f1f5f9; }
.faq-header { margin-bottom: 80px; }
.faq-header h2 { font-size: 4rem; line-height: 1; letter-spacing: -2px; }
.faq-grid { max-width: 1000px; }
.faq-item { border-bottom: 1px solid #e2e8f0; padding: 40px 0; }
.faq-question { display: flex; align-items: center; gap: 40px; }
.faq-question span { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--primary); font-weight: 800; }
.faq-question h4 { font-size: 1.6rem; font-weight: 700; color: #0f172a; }
.faq-answer { padding: 20px 0 0 65px; }
.faq-answer p { font-size: 1.15rem; line-height: 1.7; color: #64748b; max-width: 750px; }
.faq-item:hover { border-bottom-color: var(--primary); }
@media (max-width: 768px) { .faq-question { gap: 20px; } .faq-answer { padding-left: 0; } .faq-header h2 { font-size: 2.8rem; } }
.faq-section { padding: 50px 0; background: #ffffff; }
.section-title { margin-bottom: 50px; }
.faq-grid { max-width: 1000px; }
.faq-item { border-bottom: 1px solid #f1f5f9; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 22px 0; background: none; border: none; cursor: pointer; }
.q-left { display: flex; align-items: center; gap: 15px; }
.q-left span { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #24b47e; font-weight: 800; min-width: 15px; }
.q-left h4 { font-size: 1.35rem; font-weight: 700; color: #0f172a; margin: 0; }
.q-icon { font-size: 1.2rem; color: #cbd5e1; font-family: 'JetBrains Mono', monospace; }
.faq-answer { max-height: 0; opacity: 0; overflow: hidden; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.active .faq-answer { max-height: 800px; opacity: 1; padding-bottom: 20px; }
.answer-inner { padding-left: 30px; }
.answer-inner p { font-size: 1.05rem; line-height: 1.6; color: #64748b; margin-bottom: 12px; }
.faq-item:hover .q-left h4 { color: #24b47e; }
.faq-item.active .q-left h4 { color: #24b47e; }
.protocol-callout { padding: 80px 0; background: #f8fafc; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.protocol-grid { display: grid; grid-template-columns: 0.5fr 1.5fr 0.5fr; gap: 60px; align-items: center; }
.protocol-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--primary); transform: rotate(-90deg); }
.protocol-text h3 { font-size: 2.2rem; margin-bottom: 15px; color: #0f172a; }
.protocol-text p { font-size: 1.1rem; color: #475569; line-height: 1.6; }
.protocol-meta { display: flex; flex-direction: column; gap: 15px; }
.meta-item { font-size: 12px; font-weight: 700; color: #94a3b8; border-bottom: 1px solid #e2e8f0; padding-bottom: 5px; }
.meta-item span { display: block; color: var(--primary); font-family: 'JetBrains Mono', monospace; font-size: 10px; }
@media (max-width: 992px) { .protocol-grid { grid-template-columns: 1fr; } .protocol-label { transform: none; margin-bottom: 20px; } }

/* help */
.help-center-hero { padding: 100px 0 60px; background: #0f172a; color: white; text-align: center; }
.search-wrapper { position: relative; max-width: 600px; margin: 40px auto 0; }
#helpSearch { width: 100%; padding: 20px 30px; border-radius: 4px; border: none; font-size: 1.1rem; background: #1e293b; color: white; outline: 2px solid transparent; transition: 0.3s; }
#helpSearch:focus { outline-color: #24b47e; background: #334155; }
.help-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; padding: 80px 0; }
.help-card { background: #fff; border: 1px solid #e2e8f0; padding: 35px; transition: transform 0.3s ease; }
.card-head span { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 800; color: #24b47e; letter-spacing: 1px; border: 1px solid #24b47e; padding: 4px 8px; }
.help-card h3 { margin: 20px 0 15px; font-size: 1.4rem; color: #0f172a; }
.help-card p { font-size: 0.95rem; line-height: 1.6; color: #64748b; }
.help-list { margin-top: 20px; padding-left: 18px; list-style: square; color: #24b47e; }
.help-list li { margin-bottom: 8px; font-size: 0.9rem; color: #475569; }
.help-footer { text-align: center; border-top: 1px solid #e2e8f0; padding-top: 30px; padding-bottom: 50px; }
.ticket-portal { padding: 100px 0; background: #fff; }
.ticket-container { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-top: 50px; }
.ticket-info { background: #f8fafc; padding: 40px; border-left: 4px solid #24b47e; }
.custom-select-box { position: relative; width: 100%; font-family: 'JetBrains Mono', monospace; }
.select-trigger { background: #fdfdfd; border: 1px solid #e2e8f0; padding: 18px 20px; width: 100%; text-align: left; cursor: pointer; font-size: 15px; color: #64748b; display: flex; justify-content: space-between; align-items: center; }
.protocol-list { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #ffffff; border: 1px solid #e2e8f0; box-shadow: 0 10px 25px rgba(0,0,0,0.1); z-index: 999; padding: 10px 0; }
.protocol-item { padding: 15px 20px; cursor: pointer; transition: 0.2s; color: #0f172a; font-size: 14px; border-bottom: 1px solid #f8fafc; }
.protocol-item:last-child { border-bottom: none; }
.protocol-item:hover { background-color: #f1f5f9; color: #24b47e; padding-left: 30px; }
.custom-select-box:hover .protocol-list { display: block; }
.status-indicator { font-family: 'JetBrains Mono', monospace; font-size: 13px; margin-bottom: 25px; color: #24b47e; font-weight: 800; }
.checklist { list-style: none; padding: 0; margin: 30px 0; }
.checklist li { padding: 10px 0; font-size: 0.9rem; color: #64748b; border-bottom: 1px solid #e2e8f0; }
.checklist li::before { content: "✓"; margin-right: 10px; color: #24b47e; }
.support-form { display: flex; flex-direction: column; gap: 25px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; color: #94a3b8; margin-bottom: 8px; font-weight: 800; }

/* support */
.support-form input, .support-form select, .support-form textarea { width: 100%; padding: 15px; border: 1px solid #e2e8f0; background: #fdfdfd; font-size: 1rem; transition: 0.3s; }
.support-form input:focus { border-color: #24b47e; outline: none; background: #fff; }
.btn-submit-ticket { background: #0f172a; color: white; padding: 20px; border: none; font-weight: 700; cursor: pointer; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.btn-submit-ticket:hover { background: #24b47e; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-top: 60px; }
.process-step { padding: 30px; background: #fdfdfd; border-top: 4px solid #0f172a; transition: 0.3s; }
.process-step:hover { border-top-color: #24b47e; transform: translateY(-5px); }
.step-num { font-family: 'JetBrains Mono', monospace; font-size: 40px; font-weight: 900; color: #e2e8f0; margin-bottom: 10px; }
.process-step h3 { font-size: 1.2rem; color: #0f172a; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.process-step p { font-size: 0.95rem; line-height: 1.6; color: #64748b; }
.process-hub { padding: 80px 0; max-width: 1200px; margin: 0 auto; font-family: 'Inter', sans-serif; }
.process-intro { text-align: center; margin-bottom: 80px; }
.pillar-code { font-family: 'JetBrains Mono', monospace; color: #24b47e; font-size: 12px; letter-spacing: 2px; font-weight: 800; }
.track-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
.track-card { background: #ffffff; border: 1px solid #e2e8f0; padding: 40px; position: relative; transition: all 0.3s ease; }
.track-card:hover { border-color: #24b47e; box-shadow: 0 15px 40px rgba(0,0,0,0.05); transform: translateY(-5px); }
.track-card h3 { font-family: 'JetBrains Mono', monospace; font-size: 1.2rem; color: #0f172a; margin-bottom: 25px; text-transform: uppercase; border-bottom: 2px solid #24b47e; display: inline-block; padding-bottom: 5px; }
.track-card ul { list-style: none; padding: 0; margin: 0 0 30px 0; }
.track-card ul li { position: relative; padding-left: 30px; margin-bottom: 25px; font-size: 0.95rem; line-height: 1.6; color: #475569; }
.track-card ul li::before { content: ""; position: absolute; left: 4px; top: 0; bottom: -25px; width: 2px; background: #e2e8f0; }
.track-card ul li:last-child::before { display: none; }
.track-card ul li::after { content: ""; position: absolute; left: 0; top: 6px; width: 10px; height: 10px; background: #fff; border: 2px solid #24b47e; border-radius: 50%; z-index: 1; }
.track-card strong { color: #0f172a; display: block; font-size: 1rem; margin-bottom: 4px; }
.track-card p { font-size: 0.9rem; color: #94a3b8; font-style: italic; border-top: 1px solid #f1f5f9; padding-top: 20px; }
@media (max-width: 768px) { .ticket-container { grid-template-columns: 1fr; } .ticket-info { display: none; } }

/* solutions */
.solutions-editorial { padding: 140px 0; background: #ffffff; overflow: hidden; }
.solutions-stack { max-width: 1100px; margin: 0 auto; }
.solution-entry { display: flex; align-items: flex-start; position: relative; padding: 100px 0; border-bottom: 1px solid #f1f5f9; }
.solution-entry:last-child { border-bottom: none; }
.entry-number { font-family: 'JetBrains Mono', monospace; font-size: 10rem; font-weight: 900; color: #f1f5f9; line-height: 0.7; min-width: 220px; user-select: none; pointer-events: none; }
.entry-content { flex: 1; padding-top: 15px; }
.entry-tag { font-family: 'JetBrains Mono', monospace; color: #24b47e; font-size: 12px; text-transform: uppercase; letter-spacing: 3px; display: block; margin-bottom: 25px; font-weight: 800; }
.entry-content h3 { font-size: 2.2rem; color: #0f172a; margin-bottom: 45px; font-weight: 900; text-transform: uppercase; letter-spacing: -0.5px; }
.content-gap p { font-size: 1.15rem; line-height: 1.9; color: #475569; margin-bottom: 40px; max-width: 750px; }
.content-gap p:last-child { margin-bottom: 0; }
.card-icon { font-size: xx-large; color: gray; font-weight: 900; margin-top: 40px; }
@media (max-width: 992px) { .solution-entry { flex-direction: column; padding: 60px 0; } .entry-number { font-size: 6rem; margin-bottom: 20px; min-width: auto; } .entry-content h3 { font-size: 1.8rem; margin-bottom: 25px; } }
