
:root{
  --bg:#09090b;
  --bg-2:#101115;
  --bg-3:#17181c;
  --panel:rgba(255,255,255,.04);
  --text:#fff;
  --text-soft:rgba(255,255,255,.72);
  --text-muted:rgba(255,255,255,.60);
  --line:rgba(255,255,255,.20);
  --line-soft:rgba(255,255,255,.10);
  --light-bg:#f5f5f3;
  --light-text:#171717;
  --light-muted:#5b5b5b;
  --light-line:#e5e7eb;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
button{font:inherit}
svg{display:block}
.container{width:100%;max-width:1280px;margin:0 auto;padding-left:16px;padding-right:16px}
.hero-bg{
  position:relative;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.16), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255,255,255,.08), transparent 34%),
    linear-gradient(135deg,var(--bg) 0%, var(--bg-2) 52%, var(--bg-3) 100%);
}
.hero-glow-1,.hero-glow-2{position:absolute;border-radius:999px;filter:blur(56px);pointer-events:none}
.hero-glow-1{right:-64px;top:40px;width:224px;height:224px;background:rgba(255,255,255,.12)}
.hero-glow-2{left:0;top:33%;width:176px;height:176px;background:rgba(255,255,255,.06)}
.header-wrap{padding-top:12px}
.header{
  position:relative;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(16px);
  border-radius:16px;
  padding:12px 14px;
  box-shadow:0 10px 40px rgba(0,0,0,.18);
}
.header-row{display:flex;align-items:center;justify-content:space-between;gap:12px}
.brand{
  margin-left:8px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.16em;
  background:linear-gradient(90deg,#fff,rgba(255,255,255,.75));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.desktop-nav{display:none}
.desktop-nav a,.desktop-nav button{
  border:none;background:none;color:rgba(255,255,255,.65);cursor:pointer;padding:0;
  transition:.18s ease
}
.desktop-nav a.active,.desktop-nav button.active,.desktop-nav a:hover,.desktop-nav button:hover{color:#fff}
.header-actions{display:flex;align-items:center;gap:8px}
.phone-tablet,.phone-desktop{
  border:1px solid rgba(255,255,255,.20);
  background:#fff;color:#0a0a0a;font-weight:600;
  border-radius:999px;box-shadow:0 10px 30px rgba(255,255,255,.12);
}
.phone-tablet{display:none;padding:10px 16px;font-size:14px}
.phone-desktop{display:none;padding:12px 20px;font-size:14px}
.icon-btn{
  width:40px;height:40px;border-radius:999px;border:1px solid var(--line);
  background:rgba(255,255,255,.10);color:#fff;display:inline-flex;align-items:center;justify-content:center;
  box-shadow:0 8px 24px rgba(0,0,0,.20);transition:.18s ease;cursor:pointer
}
.icon-btn:hover{background:rgba(255,255,255,.20)}
.mobile-menu{
  display:none;margin-top:16px;padding-top:16px;border-top:1px solid var(--line-soft);
  flex-direction:column;gap:8px
}
.mobile-menu.show{display:flex}
.mobile-menu a,.mobile-menu button{
  border:1px solid var(--line-soft);background:transparent;color:rgba(255,255,255,.85);
  border-radius:999px;padding:12px 16px;text-align:left;cursor:pointer
}
.hero-grid{display:grid;gap:24px;padding:20px 0 60px;position:relative;z-index:1}
.hero-copy{order:2;text-align:center}
.hero-copy h1{
  margin:0 auto;
  max-width:64rem;
  font-size:1.9rem;
  line-height:1.04;
  font-weight:600;
}
.hero-copy h1 .accent{
  background:linear-gradient(90deg,#fff,rgba(255,255,255,.65));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.hero-copy p{
  margin:16px auto 0;
  max-width:42rem;
  font-size:15px;
  line-height:2rem;
  color:var(--text-soft);
}
.hero-actions{
  margin-top:24px;
  display:flex;flex-direction:column;align-items:center;gap:12px
}
.btn-primary,.btn-secondary{
  min-height:52px;width:100%;max-width:28rem;
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:999px;padding:12px 24px;font-size:14px;font-weight:600;
  text-align:center;transition:.18s ease
}
.btn-primary{
  background:#fff;color:#0a0a0a;
  box-shadow:0 12px 30px rgba(255,255,255,.14)
}
.btn-primary:hover{transform:scale(1.02)}
.btn-secondary{
  border:1px solid rgba(255,255,255,.15);color:rgba(255,255,255,.90)
}
.btn-secondary:hover{background:rgba(255,255,255,.05)}
.hero-media-wrap{order:1;position:relative}
.hero-media-glow{position:absolute;right:-32px;top:-32px;width:96px;height:96px;border-radius:999px;background:rgba(255,255,255,.10);filter:blur(56px)}
.hero-shell{
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  padding:10px;border-radius:24px;
  box-shadow:0 20px 80px rgba(0,0,0,.26)
}
.hero-media{
  aspect-ratio:4/3.2;
  overflow:hidden;border-radius:20px;border:1px solid var(--line);background:#111827
}
.hero-media img{width:100%;height:100%;object-fit:cover}
.light-section{background:var(--light-bg);color:var(--light-text)}
.light-section .container{padding:64px 0 80px}
.section-head{max-width:48rem;margin:0 auto;text-align:center}
.section-kicker{font-size:14px;letter-spacing:.30em;text-transform:uppercase;color:#737373}
.section-head h2{margin:16px 0 0;font-size:1.875rem;line-height:1.2;font-weight:600}
.slider-controls{margin:40px 0 20px;display:flex;justify-content:center;gap:8px}
.arrow-btn{
  width:44px;height:44px;border-radius:999px;border:1px solid var(--light-line);
  background:#fff;color:#404040;display:inline-flex;align-items:center;justify-content:center;cursor:pointer
}
.services-track{
  display:flex;gap:20px;overflow-x:auto;scroll-snap-type:x mandatory;
  padding:8px 7.5% 16px;
  -ms-overflow-style:none;scrollbar-width:none
}
.services-track::-webkit-scrollbar{display:none}
.service-card{
  min-width:85%;scroll-snap-align:center;border:1px solid var(--light-line);
  background:#fff;border-radius:26px;padding:24px;
  box-shadow:0 10px 30px rgba(0,0,0,.06)
}
.service-head{display:flex;align-items:center;gap:12px}
.service-icon{
  width:48px;height:48px;border-radius:16px;border:1px solid var(--light-line);
  background:#fafafa;display:inline-flex;align-items:center;justify-content:center;color:#171717;
  box-shadow:0 6px 20px rgba(0,0,0,.04)
}
.service-card h3{margin:0;font-size:2rem;line-height:1.12;font-weight:600;color:#171717}
.service-card p{margin:20px 0 0;max-width:28rem;line-height:1.75;color:#5f5f5f}
.dots{margin-top:20px;display:flex;align-items:center;justify-content:center;gap:8px}
.dot{
  width:10px;height:10px;border-radius:999px;border:none;cursor:pointer;
  background:#d4d4d4;transition:.18s ease
}
.dot.active{background:#171717}
.dark-section .container{padding:64px 0 32px}
.contact-grid{margin-top:40px;display:grid;gap:20px}
.contact-card{
  border:1px solid var(--line);background:var(--panel);
  border-radius:28px;padding:24px;text-align:center;
  box-shadow:0 22px 70px rgba(0,0,0,.22)
}
.contact-label{font-size:14px;letter-spacing:.24em;text-transform:uppercase;color:rgba(255,255,255,.40)}
.contact-value{display:block;margin-top:16px;font-size:1.25rem;line-height:1.3;font-weight:600;overflow-wrap:anywhere}
.contact-sub{margin-top:12px;font-size:14px;line-height:1.75;color:var(--text-muted)}
.about-top{
  position:relative;border-bottom:1px solid rgba(255,255,255,.10);background:var(--bg)
}
.about-wrap{padding:56px 0 80px}
.about-grid{display:grid;gap:48px}
.about-copy .eyebrow{font-size:14px;letter-spacing:.32em;text-transform:uppercase;color:rgba(255,255,255,.40)}
.about-copy h1{
  margin:20px 0 0;font-size:2.2rem;line-height:1.05;font-weight:600
}
.about-copy p{margin:20px 0 0;font-size:1rem;line-height:2rem;color:var(--text-soft)}
.map-wrap{display:flex;align-items:center;justify-content:center;height:100%}
.map-inner{width:100%;max-width:520px;overflow:hidden;border-radius:32px}
.map-inner iframe{width:100%;height:380px;border:0}
.stats-strip{background:var(--light-bg);color:var(--light-text)}
.stats-grid{display:grid;gap:40px;padding:64px 0;text-align:center}
.stat-number{font-size:3rem;line-height:1;font-weight:600}
.stat-label{margin-top:12px;font-size:14px;letter-spacing:.08em;font-weight:500}
.footer{
  margin-top:64px;border-top:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.02)
}
.footer-inner{
  padding:32px 0;font-size:14px;color:rgba(255,255,255,.45);
  display:flex;flex-direction:column;align-items:center;gap:12px;text-align:center
}
.footer-links{display:flex;flex-direction:column;align-items:center;gap:8px}
.footer-links a{transition:.18s ease}
.footer-links a:hover{color:#fff}
.cookie-banner{
  position:fixed;left:50%;bottom:16px;transform:translateX(-50%);
  width:95%;max-width:64rem;z-index:50;border:1px solid rgba(255,255,255,.10);
  background:rgba(23,23,23,.95);backdrop-filter:blur(16px);
  border-radius:16px;padding:16px;box-shadow:0 25px 50px rgba(0,0,0,.35)
}
.cookie-banner.hidden{display:none}
.cookie-row{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px}
.cookie-text{max-width:100%;font-size:14px;line-height:1.6;color:rgba(255,255,255,.80)}
.cookie-actions{display:flex;gap:8px}
.cookie-btn{
  border-radius:999px;padding:8px 16px;font-size:14px;cursor:pointer
}
.cookie-btn.ghost{border:1px solid rgba(255,255,255,.20);background:transparent;color:rgba(255,255,255,.80)}
.cookie-btn.primary{background:#fff;color:#000;border:none;font-weight:600}
@media (min-width:640px){
  .container{padding-left:24px;padding-right:24px}
  .header{padding:16px 20px;border-radius:999px}
  .brand{margin-left:12px;font-size:14px;letter-spacing:.34em}
  .phone-tablet{display:inline-flex}
  .hero-copy h1{font-size:3rem}
  .hero-copy p{margin-top:24px;font-size:1.125rem;line-height:2rem}
  .about-copy h1{font-size:3rem}
  .about-copy p{font-size:1.125rem}
  .stats-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .stat-number{font-size:3.75rem}
  .stat-label{font-size:16px}
}
@media (min-width:768px){
  .container{padding-left:28px;padding-right:28px}
}
@media (min-width:1024px){
  .desktop-nav{display:flex;align-items:center;gap:32px;font-size:14px}
  .phone-desktop{display:inline-flex}
  .hero-grid{
    grid-template-columns:1.05fr .95fr;align-items:center;gap:48px;padding:40px 0 80px
  }
  .hero-copy{order:1;text-align:left}
  .hero-copy h1{margin:0;font-size:3.75rem}
  .hero-copy p{margin:24px 0 0}
  .hero-actions{flex-direction:row;align-items:flex-start}
  .btn-primary,.btn-secondary{width:auto;max-width:none;min-width:220px}
  .hero-media-wrap{order:2}
  .hero-media{aspect-ratio:4/4.45}
  .slider-controls{justify-content:flex-end}
  .services-track{padding:0 0 16px;gap:24px}
  .service-card{min-width:29%;max-width:29%;scroll-snap-align:start;padding:28px}
  .dark-section .container{padding-top:84px}
  .contact-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .contact-card{text-align:left}
  .about-grid{grid-template-columns:1.15fr .85fr;align-items:start;gap:64px}
  .footer-inner{flex-direction:row;justify-content:space-between;text-align:left}
  .footer-links{flex-direction:row;gap:20px}
}
