/* ============================================
   LYL VENTURES LLC - Style Sheet
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #0a0a0f;
  color: #f1f5f9;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

:root {
  --primary: #ec4899;
  --secondary: #6366f1;
  --accent: #d946ef;
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #1a1a25;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: #1e293b;
  --gradient-1: linear-gradient(135deg, #ec4899, #6366f1);
  --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #0f172a 50%, #0a0a0f 100%);
  --shadow-glow: 0 0 30px rgba(236, 72, 153, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: var(--transition); padding: 1rem 0;
}
nav.scrolled {
  background: rgba(10,10,15,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(236,72,153,0.1); padding: 0.5rem 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; font-size: 1.35rem; font-weight: 700; color: var(--text-primary); transition: var(--transition); }
.nav-logo:hover { opacity: 0.9; }
.logo-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--gradient-1); border-radius: 10px; font-size: 0.85rem; font-weight: 800; color: #fff; letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 0.5rem; }
.nav-links li a { padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); transition: var(--transition); }
.nav-links li a:hover, .nav-links li a.active { color: var(--text-primary); background: rgba(236,72,153,0.1); }
.nav-links li a.contact-btn { background: var(--gradient-1); color: #fff; padding: 0.6rem 1.5rem; border-radius: 8px; font-weight: 600; }
.nav-links li a.contact-btn:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(236,72,153,0.3); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }

.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--gradient-hero); position: relative; overflow: hidden; padding: 6rem 2rem;
}
.hero::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(236,72,153,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 50%, rgba(99,102,241,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='g' patternUnits='userSpaceOnUse' width='60' height='60'%3E%3Cpath d='M 60 0 L 0 0 0 60' fill='none' stroke='rgba(236,72,153,0.04)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='60' height='60' fill='url(%23g)'/%3E%3C/svg%3E");
  opacity: 0.5; pointer-events: none;
}
.hero-content { max-width: 900px; text-align: center; position: relative; z-index: 2; animation: fadeInUp 0.8s ease-out; }
.hero-badge { display: inline-block; background: rgba(236,72,153,0.1); border: 1px solid rgba(236,72,153,0.2); color: var(--secondary); padding: 0.5rem 1.5rem; border-radius: 50px; font-size: 0.85rem; font-weight: 500; margin-bottom: 2rem; letter-spacing: 0.5px; }
.hero-content h1 { font-size: clamp(2.5rem,6vw,4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-content p { font-size: clamp(1rem,2vw,1.25rem); color: var(--text-secondary); max-width: 700px; margin: 0 auto 2.5rem; line-height: 1.8; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 2rem; border-radius: 10px; font-size: 1rem; font-weight: 600; transition: var(--transition); cursor: pointer; border: none; }
.btn-primary { background: var(--gradient-1); color: #fff; box-shadow: 0 4px 20px rgba(236,72,153,0.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(236,72,153,0.35); }
.btn-secondary { background: transparent; color: var(--text-primary); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--primary); background: rgba(236,72,153,0.05); transform: translateY(-2px); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag { display: inline-block; color: var(--secondary); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; }
.section-header h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 700; margin-bottom: 1rem; }
.section-header p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

.about-section { padding: 6rem 2rem; background: var(--bg-primary); max-width: 1200px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.2; }
.about-text .highlight { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-text p { color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 1.05rem; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.stat-item { text-align: center; padding: 2rem; background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.stat-item:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-glow); }
.stat-number { font-size: 2.5rem; font-weight: 800; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.5rem; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; }

.services-section { padding: 6rem 2rem; background: var(--bg-secondary); }
.services-section .section-header { max-width: 1200px; margin: 0 auto 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem 2rem; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-1); transform: scaleX(0); transition: var(--transition); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: rgba(236,72,153,0.3); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.service-icon { width: 56px; height: 56px; background: rgba(236,72,153,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

.approach-section { padding: 6rem 2rem; background: var(--bg-primary); max-width: 1200px; margin: 0 auto; }
.approach-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.5rem; margin-top: 3rem; }
.approach-step { text-align: center; padding: 2rem 1.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition); }
.approach-step:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-glow); }
.step-number { width: 40px; height: 40px; background: var(--gradient-1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; margin: 0 auto 1rem; color: #fff; }
.approach-step h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.approach-step p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }

.cta-section { padding: 6rem 2rem; background: var(--bg-secondary); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(236,72,153,0.08) 0%, transparent 60%); pointer-events: none; }
.cta-content { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.cta-content h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 700; margin-bottom: 1rem; }
.cta-content p { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 2rem; }

.page-banner { padding: 10rem 2rem 4rem; background: var(--gradient-hero); text-align: center; position: relative; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(236,72,153,0.06) 0%, transparent 60%); pointer-events: none; }
.page-banner h1 { font-size: clamp(2rem,4vw,3.5rem); font-weight: 800; margin-bottom: 1rem; position: relative; z-index: 2; }
.page-banner p { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto; position: relative; z-index: 2; }

.content-page { padding: 4rem 2rem; background: var(--bg-primary); }
.content-container { max-width: 1000px; margin: 0 auto; }
.content-section { margin-bottom: 3rem; }
.content-section:last-child { margin-bottom: 0; }
.content-section h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text-primary); }
.content-section h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem; color: var(--text-primary); margin-top: 2rem; }
.content-section h3:first-child { margin-top: 0; }
.content-section p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.8; font-size: 1rem; }
.content-section ul { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.content-section ul li { color: var(--text-secondary); margin-bottom: 0.5rem; line-height: 1.7; position: relative; padding-left: 1.5rem; }
.content-section ul li::before { content: '\2192'; position: absolute; left: 0; color: var(--secondary); font-weight: bold; }

.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 2rem 0; }
.mission-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: var(--transition); }
.mission-card:hover { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.mission-card h3 { margin-top: 0 !important; margin-bottom: 1rem; font-size: 1.2rem; }
.mission-card p { margin-bottom: 0; }

.service-detail-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 2rem; margin: 2rem 0; }
.service-detail-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem 2rem; transition: var(--transition); }
.service-detail-card:hover { border-color: rgba(236,72,153,0.3); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.3); }
.service-detail-card .service-icon { margin-bottom: 1.5rem; }
.service-detail-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; }
.service-detail-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.service-detail-card ul { padding-left: 0; margin-bottom: 0; }
.service-detail-card ul li { color: var(--text-secondary); font-size: 0.9rem; padding: 0.4rem 0; padding-left: 1.5rem; position: relative; }
.service-detail-card ul li::before { content: '\2192'; position: absolute; left: 0; color: var(--secondary); }

.team-page-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin: 2rem 0; }
.team-page-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; transition: var(--transition); }
.team-page-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-glow); }
.team-page-card .avatar { width: 80px; height: 80px; background: rgba(236,72,153,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1.5rem; }
.team-page-card .role { color: var(--secondary); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem; }
.team-page-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; }
.team-page-card .desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin: 2rem 0; }
.contact-info { padding: 2rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.contact-info h3 { margin-top: 0 !important; font-size: 1.3rem; margin-bottom: 1.5rem; }
.info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.info-icon { width: 44px; height: 44px; background: rgba(236,72,153,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.info-item h4 { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.25rem; }
.info-item p { color: var(--text-primary); font-size: 1rem; margin-bottom: 0; }
.contact-form { padding: 2rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.contact-form h3 { margin-top: 0 !important; font-size: 1.3rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.85rem 1rem; background: var(--bg-primary); border: 1px solid var(--border); border-radius: 8px; color: var(--text-primary); font-size: 0.95rem; font-family: inherit; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(236,72,153,0.1); }
.form-group textarea { min-height: 120px; resize: vertical; }

footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 4rem 2rem 0; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand p { color: var(--text-secondary); font-size: 0.95rem; margin-top: 1rem; line-height: 1.7; }
.footer-links h4 { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 1.5rem; }
.footer-links ul li { margin-bottom: 0.75rem; }
.footer-links ul li a { color: var(--text-secondary); font-size: 0.9rem; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.5rem 2rem; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--text-muted); font-size: 0.85rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--primary); }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .team-page-grid { grid-template-columns: repeat(2,1fr); }
  .approach-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(10,10,15,0.98); backdrop-filter: blur(20px); padding: 1rem; border-bottom: 1px solid var(--border); gap: 0.25rem; }
  .nav-links.active { display: flex; }
  .nav-links li a { display: block; padding: 0.8rem 1rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats { grid-template-columns: repeat(3,1fr); gap: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .team-page-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-content h1 { font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .team-page-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .nav-container { padding: 0 1rem; }
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-content { animation: fadeInUp 0.8s ease-out; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

.industry-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 1rem 0; }
.industry-list li { padding: 0.75rem 1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; font-size: 0.9rem; transition: var(--transition); }
.industry-list li:hover { border-color: var(--primary); }
