/* generated-by: claude-code v1.0.0 */
/* Lifyt Marketing Site — Multi-page static CSS */

:root {
  --primary: #4f46e5;
  --primary-dark: #3730a3;
  --primary-light: #ede9fe;
  --text: #1e1b4b;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-light: #f9fafb;
  --bg-dark: #1e1b4b;
  --border: #e5e7eb;
  --green: #15803d;
  --amber: #d97706;
  --red: #dc2626;
  --radius: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text); line-height: 1.6; background: var(--bg); }
a { color: var(--primary); text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-weight: 800; font-size: 22px; color: var(--primary); letter-spacing: -1px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 15px; color: var(--text-muted); font-weight: 500; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

/* Buttons */
.btn { display: inline-block; padding: 10px 24px; border-radius: var(--radius); font-weight: 600; font-size: 15px; text-align: center; transition: all .2s; border: none; cursor: pointer; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--primary-light); }
.btn-sm { padding: 7px 18px; font-size: 14px; }
.btn-lg { padding: 14px 36px; font-size: 17px; }

/* Hero */
.hero { padding: 80px 0 60px; text-align: center; background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 100%); }
.hero h1 { font-size: 48px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; letter-spacing: -1px; }
.hero .highlight { color: var(--primary); }
.hero p { font-size: 20px; color: var(--text-muted); max-width: 640px; margin: 0 auto 32px; }
.hero-badge { display: inline-block; background: var(--primary-light); color: var(--primary); padding: 6px 18px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 24px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-light); }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-dark .text-muted { color: rgba(255,255,255,0.65); }
.section-title { font-size: 36px; font-weight: 800; text-align: center; margin-bottom: 16px; letter-spacing: -0.5px; }
.section-subtitle { text-align: center; color: var(--text-muted); font-size: 18px; max-width: 600px; margin: 0 auto 48px; }

/* Feature grid */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; transition: box-shadow .2s, transform .2s; }
.feature-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.feature-icon { font-size: 28px; margin-bottom: 12px; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* Stats */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; padding: 40px 0; }
.stat-value { font-size: 42px; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.testimonial-card blockquote { font-size: 15px; line-height: 1.6; color: var(--text); font-style: italic; margin-bottom: 16px; }
.testimonial-card .author { font-size: 13px; font-weight: 600; color: var(--text); }
.testimonial-card .role { font-size: 12px; color: var(--text-muted); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 32px 28px; text-align: center; position: relative; }
.pricing-card.featured { border: 2px solid var(--primary); box-shadow: 0 8px 32px rgba(79,70,229,0.15); }
.pricing-card .badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; padding: 4px 16px; border-radius: 12px; font-size: 12px; font-weight: 600; }
.pricing-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.pricing-card .price { font-size: 42px; font-weight: 800; color: var(--primary); margin: 16px 0 4px; }
.pricing-card .price span { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.pricing-card .billing { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-card ul { list-style: none; text-align: left; margin-bottom: 28px; }
.pricing-card ul li { padding: 8px 0; font-size: 14px; color: var(--text); border-bottom: 1px solid var(--border); }
.pricing-card ul li::before { content: "\2713"; color: var(--green); font-weight: 700; margin-right: 8px; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step { text-align: center; }
.step-number { width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-muted); }

/* Two-column layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.two-col p { font-size: 16px; color: var(--text-muted); margin-bottom: 16px; }
.two-col ul { list-style: none; margin-bottom: 24px; }
.two-col ul li { padding: 6px 0; font-size: 15px; }
.two-col ul li::before { content: "\2713"; color: var(--green); font-weight: 700; margin-right: 10px; }

/* CTA */
.cta { padding: 80px 0; background: var(--primary); text-align: center; color: #fff; }
.cta h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.cta p { font-size: 18px; opacity: 0.85; margin-bottom: 32px; }

/* Footer */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer a { color: rgba(255,255,255,0.65); font-size: 14px; display: block; padding: 4px 0; transition: color .15s; }
.footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; font-size: 13px; display: flex; justify-content: space-between; }
.footer .logo { color: #fff; }
.footer .brand-desc { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 8px; max-width: 300px; }

/* Contact form */
.contact-form { max-width: 560px; margin: 0 auto; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 15px; font-family: inherit; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* About */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { text-align: center; padding: 24px; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 28px; font-weight: 700; color: var(--primary); }
.team-card h3 { font-size: 16px; font-weight: 700; }
.team-card p { font-size: 13px; color: var(--text-muted); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 28px; background: #fff; border: 1px solid var(--border); border-radius: 12px; }
.value-card h3 { font-size: 16px; font-weight: 700; margin: 12px 0 8px; }
.value-card p { font-size: 14px; color: var(--text-muted); }

/* IGNX Secure — teal accent for cyber product */
:root {
  --secure: #0d9488;
  --secure-dark: #0f766e;
  --secure-light: #ccfbf1;
}
.highlight-secure { color: var(--secure); }
.secure-badge { background: var(--secure-light); color: var(--secure); }
.btn-secure { background: var(--secure); color: #fff; }
.btn-secure:hover { background: var(--secure-dark); }
.secure-stat { color: var(--secure); }
.secure-visual { background: var(--secure-light); border-radius: 16px; height: 320px; display: flex; align-items: center; justify-content: center; font-size: 56px; }

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .features-grid, .pricing-grid, .testimonials-grid, .team-grid, .values-grid { grid-template-columns: 1fr; }
  .stats-row, .steps { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 16px; }
  .section-title { font-size: 28px; }
}
