:root{
  --bg:#060812;
  --bg-soft:#0d1120;
  --panel:#11172b;
  --panel-2:#151d36;
  --line:rgba(255,255,255,.08);
  --text:#f4f7ff;
  --muted:#aeb7cc;
  --violet:#8a63ff;
  --violet-2:#cbbdff;
  --gold:#f3cf7a;
  --cyan:#78ecff;
  --pink:#ff76d6;
  --success:#25d366;
  --shadow:0 24px 55px rgba(0,0,0,.38);
  --radius:24px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(138,99,255,.15), transparent 22%),
    radial-gradient(circle at top right, rgba(243,207,122,.09), transparent 16%),
    radial-gradient(circle at bottom left, rgba(120,236,255,.08), transparent 18%),
    linear-gradient(180deg, #060812, #090d18 35%, #060812 100%);
  line-height:1.6;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(1200px, 92%);
  margin:0 auto;
}

header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(6,8,18,.84);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}

.topbar{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:28px;
  font-weight:800;
  letter-spacing:.6px;
  color:var(--violet-2);
}

.logo-mark{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:20px;
  color:var(--gold);
  border:1px solid rgba(243,207,122,.28);
  background:
    radial-gradient(circle at 30% 30%, rgba(243,207,122,.22), transparent 50%),
    rgba(255,255,255,.03);
  box-shadow:0 8px 18px rgba(0,0,0,.25);
}

.logo span{
  color:var(--gold);
}

nav{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
}

nav a{
  color:#d9def0;
  font-size:15px;
  position:relative;
  transition:.25s;
}

nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:linear-gradient(90deg,var(--gold),var(--violet));
  transition:.25s;
}

nav a:hover,
nav a.active{
  color:#fff;
}

nav a:hover::after,
nav a.active::after{
  width:100%;
}

.hero{
  min-height:94vh;
  display:grid;
  grid-template-columns:1.06fr .94fr;
  gap:30px;
  align-items:center;
  padding:42px 0 70px;
}

.hero-copy{
  animation:fadeUp .8s ease both;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  margin-bottom:18px;
  color:var(--gold);
  border:1px solid rgba(243,207,122,.18);
  background:rgba(255,255,255,.03);
}

h1{
  font-size:clamp(36px, 7vw, 72px);
  line-height:1.02;
  margin-bottom:18px;
}

.page-hero h1{
  font-size:clamp(30px, 6vw, 56px);
}

.lead{
  font-size:18px;
  color:var(--muted);
  line-height:1.85;
  max-width:680px;
  margin-bottom:28px;
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.btn,
.btn-outline{
  min-height:52px;
  padding:0 22px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  transition:.25s;
}

.btn{
  background:linear-gradient(135deg,var(--gold),#ffe7ac);
  color:#161005;
  box-shadow:0 14px 28px rgba(243,207,122,.18);
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-outline{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:#fff;
}

.btn-outline:hover{
  border-color:rgba(138,99,255,.42);
  color:var(--violet-2);
}

.hero-visual{
  position:relative;
  min-height:620px;
  border-radius:32px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(6,8,18,.16), rgba(6,8,18,.62)),
    url('https://images.unsplash.com/photo-1532968961962-8a0cb3a2d4f5?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  box-shadow:var(--shadow);
}

.orbit-card{
  position:absolute;
  left:26px;
  right:26px;
  bottom:26px;
  padding:24px;
  border-radius:22px;
  background:rgba(10,12,24,.74);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(12px);
}

.orbit-card h3{
  margin-bottom:8px;
  font-size:24px;
  color:var(--gold);
}

.orbit-card p{
  color:#ccd2e4;
}

.page-hero{
  min-height:50vh;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg, rgba(6,8,18,.94), rgba(6,8,18,.40)),
    url('https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.page-hero-content{
  max-width:760px;
  padding:88px 0;
  animation:fadeUp .8s ease both;
}

.section{
  padding:86px 0;
}

.section-title{
  font-size:clamp(28px, 4vw, 42px);
  margin-bottom:16px;
}

.section-text{
  max-width:840px;
  color:var(--muted);
  line-height:1.85;
  margin-bottom:36px;
}

.grid-3,
.service-grid,
.consult-grid,
.stat-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.grid-2,
.about-grid,
.contact-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:28px;
  align-items:center;
}

.card,
.stat-card,
.info-box,
.form-box,
.cta-box,
.consult-card{
  background:linear-gradient(180deg,var(--panel),var(--panel-2));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.card,
.consult-card{
  overflow:hidden;
}

.card img{
  width:100%;
  height:270px;
  object-fit:cover;
}

.card-content,
.consult-content{
  padding:24px;
}

.card h3,
.consult-card h3,
.stat-card h3,
.info-box h2,
.form-box h2,
.cta-box h3{
  margin-bottom:12px;
}

.card p,
.consult-card p,
.stat-card p,
.info-box p{
  color:var(--muted);
}

.kicker{
  display:inline-block;
  color:var(--cyan);
  font-size:14px;
  margin-bottom:10px;
}

.stat-card,
.info-box,
.form-box,
.cta-box{
  padding:28px;
}

.stat-number{
  display:block;
  font-size:34px;
  font-weight:800;
  color:var(--gold);
  margin-bottom:8px;
}

.about-image img,
.map img{
  border-radius:24px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.list{
  list-style:none;
  display:grid;
  gap:12px;
  margin-top:18px;
}

.list li{
  color:#dce2f2;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.07);
}

.consult-meta{
  display:grid;
  gap:8px;
  color:#dce2f2;
}

.consult-meta strong{
  color:var(--gold);
}

.cta-box{
  margin-top:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

form{
  display:grid;
  gap:14px;
}

input,
textarea,
select{
  width:100%;
  background:rgba(255,255,255,.04);
  color:#fff;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:15px 16px;
  outline:none;
}

textarea{
  min-height:150px;
  resize:vertical;
}

input:focus,
textarea:focus,
select:focus{
  border-color:rgba(138,99,255,.45);
}

footer{
  border-top:1px solid var(--line);
  background:rgba(6,8,18,.98);
}

.footer-inner{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  color:#8d96ac;
}

.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  width:62px;
  height:62px;
  border-radius:50%;
  background:var(--success);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:28px;
  box-shadow:0 18px 35px rgba(37,211,102,.35);
  z-index:1001;
  transition:.25s;
}

.whatsapp-float:hover{
  transform:scale(1.06) translateY(-3px);
}

.fade-up{
  animation:fadeUp .85s ease both;
}

.delay-1{animation-delay:.08s;}
.delay-2{animation-delay:.16s;}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(24px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media (max-width: 980px){
  .hero,
  .grid-3,
  .service-grid,
  .consult-grid,
  .stat-grid,
  .grid-2,
  .about-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .hero-visual{
    min-height:420px;
  }

  .cta-box{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 640px){
  .topbar{
    align-items:flex-start;
    flex-direction:column;
    padding:14px 0;
  }

  nav{
    gap:14px;
  }

  .lead{
    font-size:16px;
  }

  .section{
    padding:72px 0;
  }
}