*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --bg: hsl(210,20%,98%);
  --fg: hsl(215,25%,12%);
  --card: hsl(0,0%,100%);
  --card-fg: hsl(215,25%,12%);
  --primary: hsl(210,80%,45%);
  --primary-fg: hsl(0,0%,100%);
  --secondary: hsl(215,20%,95%);
  --muted: hsl(215,12%,50%);
  --accent: hsl(175,70%,42%);
  --accent-fg: hsl(0,0%,100%);
  --border: hsl(214,20%,90%);
  --hero-gradient: linear-gradient(135deg,hsl(215,30%,10%) 0%,hsl(210,50%,18%) 50%,hsl(200,60%,22%) 100%);
  --radius: 0.75rem;
}

body{font-family:'Inter',sans-serif;background:var(--bg);color:var(--fg);-webkit-font-smoothing:antialiased;line-height:1.6}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{max-width:1200px;margin:0 auto;padding:0 1.5rem}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:0.5rem;border-radius:var(--radius);font-weight:600;cursor:pointer;transition:opacity .2s;border:none;font-family:inherit}
.btn:hover{opacity:.9}
.btn-primary{background:var(--primary);color:var(--primary-fg)}
.btn-accent{background:var(--accent);color:var(--accent-fg)}
.btn-outline{background:transparent;border:1px solid hsla(0,0%,100%,.2);color:hsl(0,0%,90%)}
.btn-outline:hover{background:hsla(175,70%,42%,.1)}
.btn-sm{padding:.5rem 1.25rem;font-size:.875rem}
.btn-lg{padding:1rem 2rem;font-size:1.125rem;border-radius:.75rem}
.glow-border{box-shadow:0 0 20px -5px hsla(175,70%,42%,.3)}

/* Navbar */
.navbar{position:fixed;top:0;left:0;right:0;z-index:50;background:hsla(210,20%,98%,.8);backdrop-filter:blur(12px);border-bottom:1px solid var(--border)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:4rem}
.nav-brand{display:flex;align-items:center;gap:.5rem}
.nav-logo{height:2rem;width:2rem}
.nav-brand-text{font-size:1.25rem;font-weight:700;color:var(--fg)}
.nav-links{display:flex;align-items:center;gap:2rem}
.nav-links a{font-size:.875rem;font-weight:500;color:var(--muted);transition:color .2s}
.nav-links a:hover{color:var(--fg)}
.menu-toggle{display:none;background:none;border:none;color:var(--fg);cursor:pointer}
.mobile-menu{display:none;padding:0 1.5rem 1rem;border-top:1px solid var(--border);background:var(--bg)}
.mobile-menu a{display:block;padding:.75rem 0;font-size:.875rem;font-weight:500;color:var(--muted)}
.mobile-menu a:hover{color:var(--fg)}
.mobile-cta{text-align:center;margin-top:.5rem}

@media(max-width:768px){
  .nav-links{display:none}
  .menu-toggle{display:block}
  .mobile-menu.open{display:block}
}

/* Hero */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;justify-content:center;overflow:hidden;padding-top:4rem}
.hero-bg{position:absolute;inset:0}
.hero-bg img{width:100%;height:100%;object-fit:cover}
.hero-overlay{position:absolute;inset:0;background:var(--hero-gradient);opacity:.85}
.hero-content{position:relative;z-index:1;text-align:center}
.hero-badge{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem 1rem;border-radius:9999px;border:1px solid hsla(175,70%,42%,.3);background:hsla(175,70%,42%,.1);margin-bottom:2rem;color:var(--accent);font-size:.875rem;font-weight:500}
.hero-badge svg{stroke:var(--accent)}
.hero-title{font-size:clamp(2.5rem,6vw,4.5rem);font-weight:800;line-height:1.1;margin-bottom:1.5rem;color:hsl(0,0%,100%)}
.text-gradient{background:linear-gradient(135deg,var(--primary),var(--accent));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hero-subtitle{max-width:640px;margin:0 auto 2.5rem;font-size:1.125rem;color:hsl(210,20%,80%)}
.hero-actions{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:1rem}

/* Sections */
.section{padding:6rem 0}
.section-alt{background:var(--secondary)}
.section-header{text-align:center;margin-bottom:4rem}
.section-tag{font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:var(--accent)}
.section-title{font-size:clamp(1.75rem,4vw,3rem);font-weight:700;margin-top:.75rem;color:var(--fg)}
.section-desc{color:var(--muted);margin-top:1rem;max-width:560px;margin-left:auto;margin-right:auto}

/* Features Grid */
.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.feature-card{padding:2rem;border-radius:1rem;background:var(--card);border:1px solid var(--border);transition:all .3s}
.feature-card:hover{border-color:hsla(175,70%,42%,.3);box-shadow:0 0 20px -5px hsla(175,70%,42%,.3)}
.feature-icon{width:3rem;height:3rem;border-radius:.75rem;background:hsla(175,70%,42%,.1);display:flex;align-items:center;justify-content:center;margin-bottom:1.25rem}
.feature-icon svg{stroke:var(--accent)}
.feature-card h3{font-size:1.25rem;font-weight:600;color:var(--card-fg);margin-bottom:.5rem}
.feature-card p{color:var(--muted);line-height:1.7}

@media(max-width:1024px){.features-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.features-grid{grid-template-columns:1fr}}

/* Steps */
.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;max-width:900px;margin:0 auto}
.step{text-align:center}
.step-num{width:4rem;height:4rem;border-radius:1rem;background:var(--accent);color:var(--accent-fg);font-size:1.5rem;font-weight:700;display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem}
.step h3{font-size:1.25rem;font-weight:600;color:var(--fg);margin-bottom:.75rem}
.step p{color:var(--muted)}

@media(max-width:768px){.steps-grid{grid-template-columns:1fr;max-width:400px}}

/* Industries */
.industries-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:1.5rem}
.industry-card{display:flex;flex-direction:column;align-items:center;gap:1rem;padding:1.5rem;border-radius:1rem;background:var(--card);border:1px solid var(--border);transition:all .3s}
.industry-card:hover{border-color:hsla(175,70%,42%,.3);box-shadow:0 0 20px -5px hsla(175,70%,42%,.3)}
.industry-card svg{stroke:var(--accent)}
.industry-card span{font-weight:600;font-size:.875rem;color:var(--card-fg)}

@media(max-width:1024px){.industries-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:640px){.industries-grid{grid-template-columns:repeat(2,1fr)}}

/* CTA */
.cta-section{padding:6rem 0;background:var(--hero-gradient)}
.cta-content{text-align:center}
.cta-title{font-size:clamp(1.75rem,4vw,3rem);font-weight:700;margin-bottom:1.5rem;color:hsl(0,0%,100%)}
.cta-desc{font-size:1.125rem;max-width:560px;margin:0 auto 2.5rem;color:hsl(210,20%,80%)}

/* Footer */
.footer{padding:3rem 0;background:var(--fg)}
.footer-inner{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:1.5rem}
.footer-brand{display:flex;align-items:center;gap:.5rem}
.footer-logo{height:1.75rem;width:1.75rem;filter:brightness(200%)}
.footer-brand span{font-size:1.125rem;font-weight:700;color:hsl(0,0%,90%)}
.footer-links{display:flex;gap:2rem}
.footer-links a{font-size:.875rem;color:hsl(210,15%,60%);transition:opacity .2s}
.footer-links a:hover{opacity:.8}
.footer-copy{font-size:.875rem;color:hsl(210,15%,50%)}

@media(max-width:768px){
  .footer-inner{flex-direction:column;text-align:center}
  .footer-links{flex-wrap:wrap;justify-content:center}
}

/* Animations */
.animate-fade-up{animation:fadeUp .6s ease-out forwards;opacity:0}
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
