/* HyndSyte Software — Landing Page Styles */

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

html { scroll-behavior: smooth; }

body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #1f2937; background: #ffffff; overflow-x: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(31, 41, 55, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(55, 65, 81, 0.5); }

.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 1rem 24px; max-width: 1200px; margin: 0 auto; }

.nav-logo a { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }

.nav-logo .logo { height: 32px; width: auto; filter: brightness(0) invert(1); }

.logo-text { color: #f9fafb; font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; }

.nav-menu { display: flex; gap: 2rem; align-items: center; }

.nav-link { text-decoration: none; color: #d1d5db; font-weight: 500; font-size: 0.95rem; transition: color 0.3s ease; }

.nav-link:hover { color: #ffffff; }

.nav-phone { color: #93c5fd; font-weight: 600; }

.nav-login { background: #2563eb; color: white !important; padding: 0.6rem 1.25rem; border-radius: 8px; font-weight: 600; transition: all 0.3s ease; }

.nav-login:hover { background: #1d4ed8; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35); }

.nav-toggle { display: none; flex-direction: column; cursor: pointer; background: none; border: none; padding: 8px; z-index: 1001; }

.nav-toggle span { display: block; width: 25px; height: 3px; background: #f9fafb; margin: 3px 0; transition: 0.3s; border-radius: 2px; }

/* Hero */
.software-hero { position: relative; padding: 160px 0 100px; background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #eff6ff 100%); overflow: hidden; }

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

.shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; animation: float 8s ease-in-out infinite; }

.shape-1 { width: 400px; height: 400px; background: #3b82f6; top: -100px; right: -100px; }

.shape-2 { width: 300px; height: 300px; background: #8b5cf6; bottom: -50px; left: -50px; animation-delay: -3s; opacity: 0.25; }

.shape-3 { width: 200px; height: 200px; background: #06b6d4; top: 40%; right: 20%; animation-delay: -6s; opacity: 0.2; }

@keyframes float { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(-20px, 15px) scale(1.05); } 66% { transform: translate(15px, -10px) scale(0.95); } }

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

.hero-badge { display: inline-block; background: linear-gradient(135deg, #2563eb, #7c3aed); color: white; padding: 0.5rem 1.25rem; border-radius: 50px; font-size: 0.875rem; font-weight: 600; margin-bottom: 1.5rem; box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3); }

.hero-title { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; color: #111827; letter-spacing: -0.03em; }

.hero-title em { font-style: normal; background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero-subtitle { font-size: 1.25rem; color: #4b5563; margin-bottom: 2.5rem; line-height: 1.7; max-width: 540px; }

.hero-actions { display: flex; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }

.btn { padding: 0.85rem 1.75rem; border: none; border-radius: 10px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 1rem; font-family: inherit; }

.btn-primary { background: #2563eb; color: white; }

.btn-primary:hover { background: #1d4ed8; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35); }

.btn-glow { position: relative; overflow: hidden; }

.btn-glow::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transform: translateX(-100%); animation: shimmer 3s infinite; }

@keyframes shimmer { 0% { transform: translateX(-100%); } 50%, 100% { transform: translateX(100%); } }

.btn-secondary { background: transparent; color: #2563eb; border: 2px solid #2563eb; }

.btn-secondary:hover { background: #2563eb; color: white; }

.btn-large { padding: 1.1rem 2.25rem; font-size: 1.1rem; border-radius: 12px; }

.btn-small { padding: 0.6rem 1.25rem; font-size: 0.9rem; }

.hero-stats { display: flex; gap: 3rem; }

.stat { text-align: center; }

.stat-number { font-size: 2.5rem; font-weight: 800; color: #2563eb; line-height: 1; }

.stat-suffix { font-size: 1.5rem; font-weight: 700; color: #2563eb; }

.stat-label { font-size: 0.875rem; color: #6b7280; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.5rem; display: block; }

/* Code Preview */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.code-preview { background: #0f172a; border-radius: 16px; box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15); width: 100%; max-width: 520px; overflow: hidden; animation: slideIn 1s ease-out; border: 1px solid #1e293b; }

@keyframes slideIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.preview-header { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; background: #1e293b; border-bottom: 1px solid #334155; }

.preview-dots { display: flex; gap: 6px; }

.preview-dots span { width: 10px; height: 10px; border-radius: 50%; background: #475569; }

.preview-dots span:first-child { background: #ef4444; }

.preview-dots span:nth-child(2) { background: #f59e0b; }

.preview-dots span:nth-child(3) { background: #10b981; }

.preview-title { font-size: 0.8rem; color: #94a3b8; font-weight: 500; }

.preview-body { padding: 1.25rem; font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace; font-size: 0.85rem; line-height: 1.7; }

.code-line { color: #cbd5e1; }

.code-kw { color: #c084fc; }

.code-str { color: #86efac; }

.code-comment { color: #64748b; font-style: italic; }

.code-var { color: #93c5fd; }

.code-fn { color: #fbbf24; }

.code-key { color: #fca5a5; }

.code-bool { color: #67e8f9; }

/* Trust Bar */
.trust-bar { background: #111827; padding: 1.25rem 0; text-align: center; }

.trust-text { color: #9ca3af; font-size: 0.95rem; }

.trust-text strong { color: #d1d5db; }

/* Sections */
section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-header h2 { font-size: 2.75rem; font-weight: 800; margin-bottom: 1rem; color: #111827; letter-spacing: -0.02em; }

.section-header p { font-size: 1.125rem; color: #6b7280; max-width: 600px; margin: 0 auto; line-height: 1.7; }

.section-header.light h2 { color: #ffffff; }

.section-header.light p { color: #9ca3af; }

.section-divider { height: 1px; background: linear-gradient(90deg, transparent, #e5e7eb, transparent); margin: 0 auto; max-width: 800px; }

/* Services */
.services { background: #f8fafc; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }

.service-card { background: #ffffff; padding: 2rem; border-radius: 14px; border: 1px solid #e5e7eb; transition: all 0.35s ease; }

.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); border-color: #bfdbfe; }

.service-icon { width: 52px; height: 52px; background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: white; }

.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; color: #111827; }

.service-card p { color: #4b5563; font-size: 0.95rem; line-height: 1.6; }

.cta-card { background: linear-gradient(135deg, #1e3a5f 0%, #1e40af 100%); color: white; border: none; }

.cta-card:hover { border-color: transparent; }

.cta-card .service-icon { background: rgba(255,255,255,0.15); }

.cta-card h3 { color: #ffffff; }

.cta-card p { color: #bfdbfe; margin-bottom: 1.5rem; }

/* Dark Features */
.dark-section { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }

.dark-section .feature-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); padding: 2rem; border-radius: 14px; transition: all 0.35s ease; }

.dark-section .feature-card:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.15); transform: translateY(-4px); }

.dark-section .feature-icon { width: 48px; height: 48px; background: linear-gradient(135deg, #3b82f6, #7c3aed); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: white; }

.dark-section .feature-card h3 { color: #ffffff; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }

.dark-section .feature-card p { color: #94a3b8; font-size: 0.95rem; line-height: 1.6; }

/* Process */
.process { background: #ffffff; }

.process-steps { display: flex; align-items: flex-start; gap: 1rem; max-width: 1100px; margin: 0 auto; }

.process-step { flex: 1; text-align: center; padding: 1rem; }

.step-number { font-size: 3.5rem; font-weight: 900; background: linear-gradient(135deg, #2563eb, #7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 1rem; display: block; }

.process-step h3 { font-size: 1.15rem; font-weight: 700; color: #111827; margin-bottom: 0.75rem; }

.process-step p { color: #4b5563; font-size: 0.95rem; line-height: 1.6; }

.process-step p strong { color: #2563eb; }

.process-arrow { display: flex; align-items: center; padding-top: 2.5rem; color: #d1d5db; flex-shrink: 0; }

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

/* CTA */
.cta-section { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); padding: 100px 0; }

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

.cta-box h2 { font-size: 2.75rem; font-weight: 800; color: #111827; margin-bottom: 1rem; letter-spacing: -0.02em; }

.cta-box p { font-size: 1.15rem; color: #4b5563; margin-bottom: 2.5rem; line-height: 1.7; }

.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

.cta-note { color: #6b7280; font-size: 0.95rem; font-style: italic; }

/* Footer */
.footer { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); color: white; padding: 80px 0 20px; }

.footer-content { display: grid; grid-template-columns: 2fr 1.5fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }

.footer-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }

.footer-logo { height: 28px; filter: brightness(0) invert(1); }

.footer-logo-text { color: #f9fafb; font-weight: 700; font-size: 1.1rem; }

.footer-section p { color: #94a3b8; margin-bottom: 1.5rem; line-height: 1.6; font-size: 0.95rem; }

.footer-contact { margin-top: 1rem; }

.footer-phone { display: inline-flex; align-items: center; gap: 0.5rem; color: #93c5fd; text-decoration: none; font-weight: 600; font-size: 1rem; transition: color 0.3s ease; }

.footer-phone:hover { color: #ffffff; }

.footer-section h4 { font-size: 1rem; font-weight: 600; margin-bottom: 1.25rem; color: #f1f5f9; text-transform: uppercase; letter-spacing: 0.05em; }

.footer-section ul { list-style: none; }

.footer-section ul li { margin-bottom: 0.65rem; }

.footer-section ul li a { color: #94a3b8; text-decoration: none; font-size: 0.95rem; transition: color 0.3s ease; }

.footer-section ul li a:hover { color: #ffffff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; text-align: center; color: #64748b; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 768px) {
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #1e293b; flex-direction: column; padding: 1rem; gap: 0; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3); }
    .nav-menu.active { display: flex; }
    .nav-menu .nav-link { padding: 0.75rem 1rem; border-radius: 6px; }
    .nav-menu .nav-link:hover { background: rgba(255, 255, 255, 0.1); }
    .nav-toggle { display: flex; }
    .software-hero { padding: 120px 0 60px; }
    .software-hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { order: -1; margin-bottom: 2rem; }
    .code-preview { max-width: 100%; }
    section { padding: 60px 0; }
    .section-header h2 { font-size: 2rem; }
    .services-grid, .features-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; }
    .process-arrow { transform: rotate(90deg); padding: 0; justify-content: center; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { justify-content: center; }
    .cta-box h2 { font-size: 2rem; }
}
