:root {
  --bg: #13335a;
  --surface: #1b4474;
  --surface-2: #24578f;
  --text: #f3f8ff;
  --muted: #d3e2f4;
  --primary: #4fafe2;
  --primary-2: #7dc8ef;
  --accent: #f8b81f;
  --border: rgba(198, 220, 246, 0.35);
  --shadow: 0 16px 36px rgba(4, 14, 28, 0.28);
  --radius: 16px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: radial-gradient(circle at 10% 8%, rgba(125, 200, 239, 0.25) 0%, rgba(125, 200, 239, 0) 40%),
    radial-gradient(circle at 92% 92%, rgba(248, 184, 31, 0.14) 0%, rgba(248, 184, 31, 0) 35%),
    linear-gradient(145deg, #123055 0%, #1b4574 54%, #1f4d81 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  position: relative;
}

main::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
  line-height: 1.2;
  margin: 0 0 0.6rem;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.01rem;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(125, 200, 239, 0.8);
  outline-offset: 2px;
}

section[id] {
  scroll-margin-top: 100px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -50px;
  background: #0f2e48;
  color: #e8eef9;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.eyebrow {
  color: var(--primary-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.bg-orb {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
}

.bg-orb-1 {
  background: #4fafe2;
  top: -90px;
  left: -80px;
}

.bg-orb-2 {
  background: #f8b81f;
  bottom: -110px;
  right: -110px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(16, 46, 82, 0.76);
  border-bottom: 1px solid rgba(159, 176, 203, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
}

.brand-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.25rem 0.45rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.brand-logo {
  width: auto;
  height: 34px;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  padding: 0;
  margin: 0;
}

.lang-switch {
  display: inline-flex;
  gap: 0.3rem;
  padding: 0.2rem;
  border: 1px solid rgba(159, 176, 203, 0.3);
  border-radius: 999px;
  background: rgba(9, 20, 36, 0.55);
}

.lang-switch a {
  min-width: 36px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  color: #d5e8fb;
}

.lang-switch a.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #06233d;
}

.nav-links a {
  color: #cfe0fb;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: transform 0.24s ease;
}

.nav-links a:hover {
  color: #eff6ff;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 10px;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #cfe0fb;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 0.8rem 1.15rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #06233d;
  box-shadow: 0 12px 24px rgba(79, 175, 226, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: #edf5ff;
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  padding-top: 4.3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: -0.03em;
}

.hero-content h1 span {
  color: #edf7ff;
}

.hero-text {
  margin-top: 1rem;
  font-size: 1.05rem;
  max-width: 62ch;
  text-align: justify;
  text-wrap: pretty;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-metrics {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-metrics article {
  background: rgba(16, 37, 64, 0.46);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.hero-metrics h3 {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.status-card,
.glass-card,
.service-card,
.project-card,
.timeline-item,
.contact-form,
.quote-wrap {
  background: linear-gradient(160deg, rgba(21, 52, 88, 0.8), rgba(17, 44, 75, 0.84));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.project-card:hover,
.contract-card:hover,
.shop-card:hover,
.timeline-item:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 200, 239, 0.4);
  box-shadow: 0 24px 44px rgba(3, 11, 24, 0.45);
}

.status-card,
.glass-card {
  padding: 1.3rem;
}

.hero-collage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 170px 170px;
  gap: 0.8rem;
}

.hero-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  display: block;
}

.hero-photo-main {
  grid-row: 1 / 3;
}

.hero-photo-top,
.hero-photo-bottom {
  position: relative;
}

.hero-photo-top::after,
.hero-photo-bottom::after,
.hero-photo-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 32, 0) 40%, rgba(6, 16, 32, 0.42));
  pointer-events: none;
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.life-shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(125, 200, 239, 0.24);
  background: rgba(11, 23, 41, 0.7);
  box-shadow: var(--shadow);
}

.life-shot img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
}

.life-shot figcaption {
  padding: 0.85rem 1rem 1rem;
  color: #d7e8fb;
  font-size: 0.92rem;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1rem;
}

.media-card {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(16, 37, 64, 0.45);
  box-shadow: var(--shadow);
}

.media-card img,
.media-card video {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.media-card-tall {
  grid-row: span 2;
}

.media-card-tall img {
  height: 490px;
}

.media-card figcaption {
  padding: 0.7rem 0.9rem 0.9rem;
  color: #dbe9fb;
  font-size: 0.9rem;
}

.media-zoom {
  position: absolute;
  right: 0.65rem;
  top: 0.65rem;
  border: 1px solid rgba(198, 220, 246, 0.5);
  background: rgba(8, 24, 43, 0.68);
  color: #eef6ff;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.3rem 0.62rem;
  cursor: pointer;
  z-index: 2;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(3, 12, 23, 0.84);
  backdrop-filter: blur(6px);
  display: none;
  place-items: center;
  padding: 1rem;
}

.lightbox.open {
  display: grid;
}

.lightbox-content {
  position: relative;
  width: min(960px, 100%);
  background: rgba(12, 31, 54, 0.95);
  border: 1px solid rgba(198, 220, 246, 0.42);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  padding: 0.8rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(198, 220, 246, 0.6);
  background: rgba(8, 24, 43, 0.72);
  color: #f0f7ff;
  border-radius: 999px;
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
}

.lightbox-prev {
  left: 0.7rem;
}

.lightbox-next {
  right: 0.7rem;
}

.lightbox-content img,
.lightbox-content video {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 12px;
  display: none;
  background: #0b1f37;
}

.lightbox-content img.active,
.lightbox-content video.active {
  display: block;
}

#lightboxCaption {
  margin: 0.7rem 0 0.2rem;
  color: #e5f1ff;
}

.lightbox-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  border: 1px solid rgba(198, 220, 246, 0.56);
  background: rgba(8, 24, 43, 0.76);
  color: #eef6ff;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.logo-carousel {
  overflow: hidden;
  border: 1px solid rgba(198, 220, 246, 0.28);
  border-radius: 14px;
  background: rgba(18, 44, 73, 0.45);
  padding: 0.7rem 0;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 0.9rem;
  animation: logoScroll 26s linear infinite;
}

.logo-item {
  margin: 0;
  width: 170px;
  height: 74px;
  border-radius: 10px;
  border: 1px solid rgba(198, 220, 246, 0.35);
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  padding: 0.45rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(3, 11, 24, 0.24);
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.logo-item.is-square img {
  max-width: 72%;
  max-height: 92%;
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.status-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.45rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7dc8ef;
  box-shadow: 0 0 18px #7dc8ef;
}

.status-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  color: #d0ddf2;
}

.status-card li,
.glass-card p,
.service-card p,
.project-card p,
.contract-card p,
.shop-card p,
.faq-item p,
.timeline-item p,
.quote,
.contact-grid > .reveal > p,
.section-head > p:last-child,
.danarka-card p,
.life-shot figcaption,
.media-card figcaption,
.contact-list li,
.cart-summary p {
  text-align: justify;
  text-wrap: pretty;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.7rem 0 0.9rem;
}

.tech-tags span {
  font-size: 0.76rem;
  border: 1px solid rgba(79, 175, 226, 0.45);
  background: rgba(79, 175, 226, 0.14);
  border-radius: 999px;
  padding: 0.32rem 0.6rem;
  color: #cdeaff;
}

.cards-grid,
.project-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.project-card {
  padding: 1.3rem;
}

.contracts-grid,
.trust-grid {
  display: grid;
  gap: 1rem;
}

.faq-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-item {
  background: linear-gradient(160deg, rgba(21, 52, 88, 0.8), rgba(17, 44, 75, 0.84));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.danarka-card {
  background: linear-gradient(135deg, rgba(30, 74, 121, 0.86), rgba(22, 56, 95, 0.9));
  border: 1px solid rgba(198, 220, 246, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
  width: 100%;
}

.danarka-card p {
  max-width: 62ch;
}

.danarka-media {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  align-items: center;
}

.danarka-media img {
  width: 100%;
  max-width: 180px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 0.5rem;
  border: 1px solid rgba(198, 220, 246, 0.46);
}

.danarka-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.danarka-badges span {
  border: 1px solid rgba(198, 220, 246, 0.44);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
  color: #eef6ff;
  font-weight: 600;
}

.danarka-list {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: #e6f1ff;
}

.danarka-list li {
  margin-bottom: 0.35rem;
}

.danarka-card .btn {
  margin-top: 1rem;
}

.contracts-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contract-card,
.trust-item {
  background: linear-gradient(160deg, rgba(21, 52, 88, 0.8), rgba(17, 44, 75, 0.84));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contract-card {
  padding: 1.2rem;
}

.trust-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.trust-item {
  min-height: 90px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #bfd2ef;
}

.service-card a {
  margin-top: 1rem;
  display: inline-flex;
  color: #9bd6f4;
  font-weight: 600;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.filter-btn {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(23, 37, 62, 0.55);
  color: #d9e7fb;
  padding: 0.46rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.filter-btn.active {
  background: rgba(79, 175, 226, 0.22);
  color: #cfeaff;
  border-color: rgba(79, 175, 226, 0.5);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.shop-card {
  background: linear-gradient(160deg, rgba(21, 52, 88, 0.8), rgba(17, 44, 75, 0.84));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.shop-card-foot {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}

.shop-card-foot strong {
  color: #fff3d2;
}

.cart-panel {
  background: linear-gradient(160deg, rgba(21, 52, 88, 0.82), rgba(17, 44, 75, 0.86));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-items {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  gap: 0.7rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.7rem;
  align-items: center;
  border: 1px solid rgba(180, 202, 233, 0.18);
  border-radius: 10px;
  padding: 0.7rem;
}

.cart-item button {
  background: rgba(248, 184, 31, 0.18);
  color: #fdd47a;
  border: 1px solid rgba(248, 184, 31, 0.36);
  border-radius: 8px;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
}

.cart-summary {
  border-top: 1px solid rgba(180, 202, 233, 0.16);
  padding-top: 0.7rem;
}

.cart-summary p {
  display: flex;
  justify-content: space-between;
  margin: 0.35rem 0;
}

.cart-total {
  font-size: 1.06rem;
}

.checkout-form {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.55rem;
}

.checkout-form input {
  width: 100%;
  border: 1px solid rgba(159, 176, 203, 0.35);
  background: rgba(7, 24, 43, 0.42);
  color: #e8eef9;
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font: inherit;
}

.project-card .tag {
  color: #f6cf84;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
}

.project-card.hidden {
  display: none;
}

.method-grid {
  display: grid;
  gap: 1.3rem;
}

.timeline {
  display: grid;
  gap: 0.8rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 1.1rem;
}

.timeline-item span {
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-weight: 800;
  background: rgba(79, 175, 226, 0.2);
  border: 1px solid rgba(125, 200, 239, 0.5);
  color: #cfeaff;
}

.testimonials .quote-wrap {
  padding: 1.5rem;
}

.quote {
  margin: 0;
  display: none;
  font-size: 1.08rem;
  color: #d8e6fa;
}

.quote.active {
  display: block;
}

.quote cite {
  display: block;
  margin-top: 0.9rem;
  color: #9fd9d1;
  font-style: normal;
}

.quote-controls {
  margin-top: 1rem;
  display: flex;
  gap: 0.8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-list {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: #c8d8ef;
}

.contact-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.contact-map {
  margin-top: 1rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(198, 220, 246, 0.35);
  box-shadow: var(--shadow);
}

.contact-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.contact-form {
  padding: 1.3rem;
  display: grid;
  gap: 0.55rem;
}

.contact-form label {
  color: #bfd1ec;
  font-weight: 600;
  font-size: 0.94rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(159, 176, 203, 0.35);
  background: rgba(7, 24, 43, 0.42);
  color: #e8eef9;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(125, 200, 239, 0.46);
  border-color: rgba(125, 200, 239, 0.46);
}

.form-feedback {
  min-height: 1.1rem;
  color: #9bd6f4;
  font-size: 0.9rem;
}

.site-footer {
  padding: 1.6rem 0;
  border-top: 1px solid rgba(159, 176, 203, 0.16);
  background: rgba(13, 36, 62, 0.74);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-links a {
  border: 1px solid rgba(198, 220, 246, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: #edf6ff;
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.social-links a svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: #04210f;
  padding: 0.76rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.38);
  z-index: 40;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-metrics .reveal:nth-child(1),
.cards-grid .reveal:nth-child(1),
.project-grid .reveal:nth-child(1),
.contracts-grid .reveal:nth-child(1),
.faq-grid .reveal:nth-child(1),
.life-grid .reveal:nth-child(1),
.media-grid .reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.hero-metrics .reveal:nth-child(2),
.cards-grid .reveal:nth-child(2),
.project-grid .reveal:nth-child(2),
.contracts-grid .reveal:nth-child(2),
.faq-grid .reveal:nth-child(2),
.life-grid .reveal:nth-child(2),
.media-grid .reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.hero-metrics .reveal:nth-child(3),
.cards-grid .reveal:nth-child(3),
.project-grid .reveal:nth-child(3),
.contracts-grid .reveal:nth-child(3),
.faq-grid .reveal:nth-child(3),
.life-grid .reveal:nth-child(3),
.media-grid .reveal:nth-child(3) {
  transition-delay: 0.19s;
}

.contracts-grid .reveal:nth-child(4),
.life-grid .reveal:nth-child(4),
.media-grid .reveal:nth-child(4) {
  transition-delay: 0.26s;
}

.life-grid .reveal:nth-child(5),
.media-grid .reveal:nth-child(5) {
  transition-delay: 0.33s;
}

.floating {
  animation: floatY 4.6s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1000px) {
  .hero-grid,
  .contact-grid,
  .cards-grid,
  .project-grid,
  .contracts-grid,
  .shop-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .life-grid {
    grid-template-columns: 1fr 1fr;
  }

  .media-grid {
    grid-template-columns: 1fr 1fr;
  }

  .media-card-tall {
    grid-row: auto;
    grid-column: span 2;
  }

  .media-card-tall img {
    height: 260px;
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-cta {
    display: none;
  }

  .lang-switch {
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(8, 16, 29, 0.98);
    border-bottom: 1px solid rgba(159, 176, 203, 0.2);
    padding: 0.9rem 1rem 1.2rem;
    transform: translateY(-160%);
    transition: transform 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .hero-collage {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .hero-photo-main {
    grid-row: auto;
  }

  .hero-photo img {
    height: 230px;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 4.3rem 0;
  }

  .hero {
    padding-top: 2.7rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .quote {
    font-size: 1rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .life-grid {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-card-tall {
    grid-column: auto;
  }

  .media-card img,
  .media-card video,
  .media-card-tall img {
    height: 220px;
  }

  .lightbox-nav {
    width: 38px;
    height: 38px;
  }

  .danarka-media {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .logo-track {
    animation: none !important;
  }
}
