:root {
  --bg: #ffffff;
  --surface: #f4f8ff;
  --surface-2: #eaf1fb;
  --ink: #0a1430;
  --ink-strong: #070f24;
  --ink-soft: #425372;
  --line: #d8e1f0;
  --brand: #1f57c8;
  --brand-deep: #0c1f52;
  --brand-cyan: #66d8d0;
  --accent: #28b8e6;
  --footer: #07122e;
  --footer-soft: #7f95be;
  --max: 1180px;
  --shadow: 0 24px 55px rgba(12, 31, 82, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    radial-gradient(circle at 5% 0%, rgba(102, 216, 208, 0.12), transparent 24%),
    radial-gradient(circle at 92% 8%, rgba(31, 87, 200, 0.12), transparent 28%),
    var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 200;
  padding: 0.55rem 0.8rem;
  border-radius: 0.45rem;
  background: #ffffff;
  border: 1px solid var(--brand-deep);
  color: var(--brand-deep);
  font-weight: 700;
  transition: top 180ms ease;
}

.skip-link:focus-visible {
  top: 1rem;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.section-subtitle {
  color: var(--ink-soft);
  margin: 0;
  max-width: 62ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  padding: 0.78rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: 220ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  box-shadow: 0 12px 25px rgba(31, 87, 200, 0.27);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 24px rgba(31, 87, 200, 0.32);
}

.btn-outline {
  color: var(--brand-deep);
  border-color: var(--brand-deep);
  background: #fff;
}

.btn-outline:hover {
  background: var(--brand-deep);
  color: #fff;
}

.nav-links .btn-outline:hover,
.nav-links .btn-outline:focus-visible {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(9, 20, 48, 0.1);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand img {
  width: clamp(170px, 16vw, 240px);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(31, 87, 200, 0.13));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav-links a {
  position: relative;
  color: var(--ink-soft);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-deep);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, var(--brand), var(--brand-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  color: var(--brand-deep);
  background: #fff;
  padding: 0.5rem 0.68rem;
  font-weight: 700;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 25%, rgba(102, 216, 208, 0.45), transparent 44%),
    radial-gradient(circle at 80% 70%, rgba(31, 87, 200, 0.23), transparent 42%),
    linear-gradient(105deg, #f9fcff 12%, #edf5ff 54%, #f7fbff 100%);
}

.media-hero {
  background-image:
    linear-gradient(105deg, rgba(7, 15, 36, 0.56), rgba(7, 15, 36, 0.26)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.media-hero::before {
  opacity: 0.18;
}

.media-hero h1,
.media-hero .breadcrumb,
.media-hero .breadcrumb a {
  color: #f8fcff;
  text-shadow: 0 6px 22px rgba(5, 10, 24, 0.72), 0 1px 2px rgba(5, 10, 24, 0.45);
}

.media-hero .breadcrumb strong {
  color: var(--brand-cyan);
}

.media-hero .kicker {
  color: #c8f4ff;
  text-shadow: 0 4px 16px rgba(5, 10, 24, 0.66);
}

.media-hero .hero-grid > :first-child > p {
  color: #e8f2ff;
  text-shadow: 0 4px 16px rgba(5, 10, 24, 0.6);
}

.hero::after {
  content: "";
  position: absolute;
  width: min(38vw, 420px);
  aspect-ratio: 1;
  right: -10vw;
  top: 10%;
  background: radial-gradient(circle, rgba(12, 31, 82, 0.14), rgba(12, 31, 82, 0));
  filter: blur(0.5px);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(12, 31, 82, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(12, 31, 82, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.45;
}

.hero-home {
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
  padding: 5rem 0 5.5rem;
}

.hero-home::after {
  content: "";
  position: absolute;
  width: min(52vw, 760px);
  height: min(52vw, 760px);
  left: -18vw;
  bottom: -40vw;
  background: radial-gradient(circle, rgba(31, 87, 200, 0.2), transparent 65%);
  animation: pulseGlow 12s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-visual {
  min-height: 520px;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  background-image:
    linear-gradient(180deg, rgba(7, 15, 36, 0.08), rgba(7, 15, 36, 0.78)),
    var(--media-image);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(7, 15, 36, 0.8));
}

.hero-visual .hero-card {
  position: relative;
  z-index: 2;
  backdrop-filter: blur(2px);
  background: rgba(255, 255, 255, 0.92);
}

.media-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  margin-top: 1.8rem;
}

.media-card {
  min-height: 280px;
  border-radius: 0.9rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background-image:
    linear-gradient(180deg, rgba(7, 15, 36, 0.08), rgba(7, 15, 36, 0.62)),
    var(--media-image);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.media-card::after {
  content: attr(data-label);
  position: absolute;
  left: 1rem;
  bottom: 0.8rem;
  color: #f3f7ff;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.media-stack {
  display: grid;
  gap: 1rem;
}

.project-top.with-photo {
  background-image:
    linear-gradient(180deg, rgba(7, 15, 36, 0.1), rgba(7, 15, 36, 0.6)),
    var(--card-image);
  background-size: cover;
  background-position: center;
  color: #f3f7ff;
}

.kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand);
  margin-bottom: 1rem;
}

.hero h1 {
  margin: 0;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 0.98;
  font-size: clamp(2.6rem, 7vw, 6.3rem);
  color: var(--ink-strong);
  text-wrap: balance;
}

.media-hero h1 {
  color: #f8fcff;
}

.hero p {
  color: var(--ink-soft);
  margin: 1.2rem 0 2rem;
  max-width: 58ch;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 87, 200, 0.22);
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-card {
  background: linear-gradient(160deg, #ffffff, #f6faff);
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  transform: translateY(20px);
  animation: floatCard 8s ease-in-out infinite;
}

.hero-card h3 {
  margin: 0 0 0.8rem;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.65rem;
}

.hero-card p {
  margin: 0;
}

.hero-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.hero-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: 1px solid var(--line);
  padding: 0.65rem 0.8rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
}

.hero-list span:last-child {
  color: var(--brand);
  font-weight: 700;
}

.page-hero {
  padding: 5.2rem 0 4rem;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin: 0;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.breadcrumb {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.breadcrumb strong {
  color: var(--brand);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  border: 1px solid var(--line);
  background: linear-gradient(140deg, #fff, #f7fbff);
  border-radius: 0.8rem;
  padding: 1rem;
}

.stat strong {
  display: block;
  color: var(--brand);
  font-size: 2rem;
  font-family: "Oswald", Arial, sans-serif;
  line-height: 1;
}

.stat span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: linear-gradient(160deg, #ffffff, #f8fbff);
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 87, 200, 0.3);
  box-shadow: var(--shadow);
}

.service-card::before {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 216, 208, 0.5), transparent 70%);
}

.service-card h3 {
  margin: 0;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
}

.service-card ul {
  margin: 0.9rem 0 0;
  padding-left: 1rem;
  color: var(--ink-soft);
}

.projects-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
  border-radius: 0.9rem;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  position: relative;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(31, 87, 200, 0.3);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -100% -40%;
  height: 140%;
  background: linear-gradient(120deg, transparent 38%, rgba(102, 216, 208, 0.18), transparent 62%);
  transform: translateX(-50%) rotate(7deg);
  transition: transform 420ms ease;
  pointer-events: none;
}

.project-card:hover::after {
  transform: translateX(35%) rotate(7deg);
}

.project-top {
  min-height: 170px;
  padding: 1rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(102, 216, 208, 0.35), transparent 38%),
    linear-gradient(135deg, #dcecff, #bed6ff 70%, #a7c3f6);
  display: flex;
  align-items: flex-end;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink-strong);
}

.section-dark {
  position: relative;
  background: linear-gradient(165deg, #0b1739, #06142f 70%);
  color: #eef4ff;
}

.section-dark .kicker,
.section-dark .section-title,
.section-dark .section-subtitle,
.section-dark .timeline-item h4,
.section-dark .timeline-item p {
  color: #eef4ff;
}

.section-dark .section-subtitle,
.section-dark .timeline-item p {
  color: #b4c6e8;
}

.section-dark .timeline {
  border-top-color: rgba(180, 198, 232, 0.22);
}

.section-dark .timeline-item {
  border-bottom-color: rgba(180, 198, 232, 0.18);
}

.section-dark .timeline-item .num {
  color: rgba(203, 216, 241, 0.3);
}

.section-dark .timeline-item .tag {
  border-color: rgba(180, 198, 232, 0.3);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.marquee-band {
  background: #050f28;
  color: rgba(225, 233, 248, 0.45);
  overflow: hidden;
  border-top: 1px solid rgba(218, 227, 244, 0.08);
  border-bottom: 1px solid rgba(218, 227, 244, 0.08);
  position: relative;
}

.marquee-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #050f28 0%, transparent 10%, transparent 90%, #050f28 100%);
  pointer-events: none;
  z-index: 2;
}

.marquee {
  display: flex;
  white-space: nowrap;
  user-select: none;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(1.8rem, 5vw, 4rem);
  min-width: max-content;
  padding: 1.2rem 0;
  animation: marqueeMove 30s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 8vw, 5.2rem);
  line-height: 1;
  letter-spacing: 0.09em;
  text-shadow: 0 16px 28px rgba(7, 15, 36, 0.45);
}

.marquee-track .dot {
  color: rgba(102, 216, 208, 0.85);
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.project-body {
  padding: 1rem;
}

.project-body h3 {
  margin: 0;
  font-size: 1.08rem;
}

.project-body p {
  margin: 0.6rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.timeline {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 1rem 0.4rem;
  transition: background-color 240ms ease, padding-left 240ms ease;
}

.timeline-item:hover {
  background: rgba(31, 87, 200, 0.06);
  padding-left: 0.75rem;
}

.timeline-item .num {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: #c8d4ea;
  min-width: 55px;
}

.timeline-item h4 {
  margin: 0;
  text-transform: uppercase;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.18rem;
}

.timeline-item p {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
}

.timeline-item .tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: #fff;
  padding: 1.2rem;
  box-shadow: 0 16px 38px rgba(12, 31, 82, 0.08);
}

.panel h3 {
  margin-top: 0;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.form-grid.two {
  grid-template-columns: 1fr 1fr;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.contact-badge {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.82rem;
  background: linear-gradient(145deg, var(--brand), var(--accent));
}

.map-placeholder {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background:
    radial-gradient(circle at 25% 30%, rgba(102, 216, 208, 0.35), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(31, 87, 200, 0.2), transparent 38%),
    linear-gradient(125deg, #f7fbff, #edf5ff);
  min-height: 230px;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  font-weight: 600;
}

.map-embed {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  overflow: hidden;
  min-height: 260px;
  box-shadow: 0 12px 28px rgba(12, 31, 82, 0.08);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 300px;
  border: 0;
}

.quick-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  display: grid;
  gap: 0.45rem;
}

.quick-actions a {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.78rem;
  box-shadow: 0 12px 24px rgba(7, 15, 36, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.quick-actions a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.quick-actions a:hover,
.quick-actions a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(7, 15, 36, 0.34);
}

.quick-actions .wa {
  background: #25d366;
}

.quick-actions .fb {
  background: #1877f2;
}

.quick-actions .ig {
  background: linear-gradient(145deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4);
}

.quick-actions .mail {
  background: #0c1f52;
}

.faq {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 0.72rem;
  overflow: hidden;
  background: #fff;
}

.faq-btn {
  border: 0;
  width: 100%;
  text-align: left;
  background: #fff;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 1rem;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1rem;
  cursor: pointer;
}

.faq-body {
  padding: 0 1rem 1rem;
  color: var(--ink-soft);
  display: none;
}

.faq-item.open .faq-body {
  display: block;
}

.faq-item.open .faq-btn {
  color: var(--brand);
}

.newsletter {
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: linear-gradient(110deg, #f8fcff, #edf5ff);
  padding: 1.2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.newsletter form {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.newsletter input {
  min-width: 240px;
}

.site-footer {
  margin-top: 4rem;
  background: linear-gradient(145deg, #08183d, var(--footer));
  color: #dce6fb;
}

.footer-top {
  padding: 3.3rem 0 2.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.3fr;
  gap: 1.2rem;
}

.footer-title {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.52rem;
}

.footer-links a {
  color: var(--footer-soft);
}

.footer-links a:hover {
  color: #fff;
}

.footer-news p {
  color: var(--footer-soft);
  margin-top: 0;
}

.footer-news form {
  display: flex;
  margin-top: 0.75rem;
}

.footer-news input {
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.footer-news button {
  border: 0;
  min-width: 52px;
}

.footer-bottom {
  border-top: 1px solid rgba(220, 230, 251, 0.16);
  padding: 1.1rem 0 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand img {
  width: min(230px, 52vw);
}

.footer-legal {
  color: var(--footer-soft);
  font-size: 0.85rem;
}

.socials {
  display: flex;
  gap: 0.5rem;
}

.socials a {
  border: 1px solid rgba(220, 230, 251, 0.25);
  color: #fff;
  padding: 0.45rem 0.8rem;
  font-size: 0.82rem;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.09);
}

.js .reveal,
.js .reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 700ms ease;
}

.js .reveal.delay-1,
.js .reveal-on-scroll.delay-1 {
  animation-delay: 120ms;
  transition-delay: 120ms;
}

.js .reveal.delay-2,
.js .reveal-on-scroll.delay-2 {
  animation-delay: 220ms;
  transition-delay: 220ms;
}

.js .reveal.delay-3,
.js .reveal-on-scroll.delay-3 {
  animation-delay: 300ms;
  transition-delay: 300ms;
}

.js .reveal.in-view,
.js .reveal-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise {
  to {
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.32;
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

[data-parallax] {
  will-change: transform;
  transition: transform 120ms linear;
}

@media (max-width: 1030px) {
  .hero-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .media-collage {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 830px) {
  .menu-btn {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 85px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.2rem 1.3rem;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 180ms ease;
  }

  .nav-links.open {
    transform: scaleY(1);
  }

  .hero-home {
    min-height: auto;
    padding-top: 3.2rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .marquee-track {
    animation-duration: 24s;
  }

  .timeline-item {
    grid-template-columns: auto 1fr;
  }

  .timeline-item .tag {
    grid-column: 2;
    justify-self: start;
  }

  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .quick-actions {
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .quick-actions a {
    width: 40px;
    height: 40px;
  }
}
