.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6,13,24,0.76), rgba(8,22,42,0.48)),
    url('../images/hero/hero-main.jpg') center center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(59,130,246,0.22), transparent 40%);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,11,20,0.18), rgba(5,11,20,0.82));
  z-index: -1;
}
.hero-shell { position: relative; }
.hero-inner {
  max-width: 780px;
  padding: 90px 0 140px;
  animation: fadeUp 1s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--silver);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h2 {
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero h2 .grad {
  background: linear-gradient(135deg, #fff, #b8d8ff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  max-width: 620px;
  color: #d5e3f7;
  line-height: 1.85;
  font-size: 1.08rem;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.stats-strip {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
}
.stat-card {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}
.stat-card h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 6px;
}
.stat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}
.floating-panel {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: min(420px, calc(100% - 40px));
  border-radius: 28px;
  padding: 18px;
  background: rgba(7, 20, 36, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(123, 177, 255, 0.16);
  box-shadow: var(--shadow);
}
.floating-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.floating-head span {
  color: var(--silver);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.floating-icon { color: var(--blue); }
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.mini-item {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.mini-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.mini-item p {
  padding: 10px 12px;
  color: #dbe8fb;
  font-size: 0.88rem;
  font-weight: 600;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.gallery {
  background:
    radial-gradient(circle at 10% 10%, rgba(59,130,246,0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0));
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  height: 280px;
  border: 1px solid rgba(123, 177, 255, 0.12);
  box-shadow: var(--shadow-soft);
  background: #0b1423;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(1.02) contrast(1.05);
}
.gallery-item:hover img { transform: scale(1.06); }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}
.about-image,
.about-text {
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(123, 177, 255, 0.12);
  box-shadow: var(--shadow);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 460px;
}
.about-text {
  padding: 34px;
  background: linear-gradient(180deg, rgba(13,22,36,0.92), rgba(7,12,22,0.98));
}
.about-text h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.about-text p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
}
.about-points {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
}
.point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #dce7f4;
}
.point i {
  color: var(--blue);
  margin-top: 4px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
footer {
  padding: 56px 0 28px;
  border-top: 1px solid rgba(123, 177, 255, 0.12);
  background: #040a12;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 26px;
  margin-bottom: 30px;
}
.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffffff, var(--silver-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-brand p,
.footer-links a,
.footer-links p {
  color: var(--muted-2);
  line-height: 1.8;
}
.footer-links h4 {
  margin-bottom: 14px;
  color: #fff;
}
.footer-links a {
  display: block;
  margin-bottom: 10px;
  transition: 0.25s ease;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.social-icons a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(123, 177, 255, 0.12);
  color: var(--silver);
  transition: 0.25s ease;
}
.social-icons a:hover {
  background: rgba(59,130,246,0.16);
  color: #fff;
  transform: translateY(-3px);
}
.copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(123, 177, 255, 0.1);
  color: var(--muted-2);
  text-align: center;
  font-size: 0.85rem;
}
