﻿/* ========================================
   PointArt — Modern Architectural Corporate
   ======================================== */

:root {
  --navy: #123b63;
  --navy-2: #0e3052;
  --navy-3: #1a4a75;
  --gold: #f7941d;
  --gold-hot: #ffaa3d;
  --gold-soft: rgba(247, 148, 29, 0.14);
  --ink: #2c2c2c;
  --muted: #6b7280;
  --line: rgba(18, 59, 99, 0.1);
  --bg: #ffffff;
  --bg-alt: #f7f9fc;
  --surface: #ffffff;
  --text: #2c2c2c;
  --text-soft: #6b7280;
  --inverse: #ffffff;
  --shadow: 0 4px 24px rgba(18, 59, 99, 0.08);
  --shadow-lg: 0 24px 64px rgba(18, 59, 99, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --header-h: 88px;
  --font-ar: "Tajawal", sans-serif;
  --font-en: "Sora", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1200px;
  --grid-line: rgba(18, 59, 99, 0.045);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-ar);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
  opacity: 0.9;
}

html[lang="en"] body {
  font-family: var(--font-en);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: clamp(2.75rem, 5vw, 4.25rem) 0;
  position: relative;
}

.section--alt {
  background: var(--bg-alt);
}

.section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 0% 50%, var(--gold-soft), transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 20%, rgba(22, 48, 82, 0.06), transparent 55%);
  pointer-events: none;
}

.section__head {
  max-width: 620px;
  margin-bottom: 2rem;
}

.section__num {
  display: block;
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: color-mix(in srgb, var(--navy) 35%, var(--text-soft));
  margin-bottom: 0.65rem;
}

.section__head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0.55rem 0 0.9rem;
}

.section__head p {
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.8rem 1.7rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--accent {
  background: var(--gold);
  color: #2c2c2c;
  box-shadow: 0 8px 28px rgba(247, 148, 29, 0.3);
}

.btn--accent:hover {
  background: var(--gold-hot);
  box-shadow: 0 12px 36px rgba(247, 148, 29, 0.4);
}

.btn--primary {
  background: var(--navy);
  color: #fff;
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--sm {
  min-height: 42px;
  padding: 0.5rem 1.15rem;
  font-size: 0.88rem;
}

.btn--full {
  width: 100%;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 60%, transparent);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--text);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.icon-btn:hover {
  background: var(--bg-alt);
  transform: translateY(-1px);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: grid;
  place-content: center;
  gap: 1.5rem;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__mark {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-align: center;
}

.preloader__bar {
  width: 120px;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  margin-inline: auto;
  border-radius: 4px;
}

.preloader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--gold);
  border-radius: 4px;
  animation: load 1s ease-in-out infinite;
}

@keyframes load {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(280%); }
}

/* Header — floating modern bar */
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  padding-top: 12px;
  transition: padding 0.35s var(--ease), transform 0.35s var(--ease), opacity 0.35s var(--ease);
  will-change: transform;
}

.header.is-hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

body.is-inner .header,
.header.is-scrolled {
  padding-top: 8px;
}

body.is-inner .header .header__inner,
.header.is-scrolled .header__inner {
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  backdrop-filter: blur(20px) saturate(1.4);
  border-color: var(--line);
  box-shadow: var(--shadow);
  height: 64px;
}

body.is-inner .logo__text strong,
body.is-inner .logo__text small,
body.is-inner .nav a,
body.is-inner .icon-btn,
.header.is-scrolled .logo__text strong,
.header.is-scrolled .logo__text small,
.header.is-scrolled .nav a,
.header.is-scrolled .icon-btn {
  color: var(--text);
}

body.is-inner .logo__text small,
.header.is-scrolled .logo__text small {
  color: var(--text-soft);
}

body.is-inner .icon-btn,
.header.is-scrolled .icon-btn {
  border-color: var(--line);
  background: color-mix(in srgb, var(--surface) 60%, transparent);
}

body.is-inner .nav-toggle {
  color: var(--text);
}

.nav a.is-active {
  opacity: 1;
  background: color-mix(in srgb, var(--gold) 14%, transparent);
  color: var(--text);
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 2.25rem) 0 2.5rem;
  background:
    linear-gradient(125deg, rgba(18, 59, 99, 0.94), rgba(26, 74, 117, 0.88)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=70")
      center / cover;
  color: #fff;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 20%, rgba(247, 148, 29, 0.18), transparent 55%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.25rem;
}

.page-hero__crumb a:hover {
  color: var(--gold-hot);
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  max-width: 16ch;
  margin-bottom: 0.85rem;
}

.page-hero p {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.page-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.home-teaser__actions {
  margin-top: 1.25rem;
  display: flex;
  justify-content: flex-start;
}

/* Service / Project detail */
.detail {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.75rem;
  align-items: start;
}

.detail__media {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  background: var(--navy);
}

.detail__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.detail__content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  margin: 0.75rem 0 1rem;
  line-height: 1.2;
}

.detail__content h3 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.85rem;
  letter-spacing: -0.02em;
}

.detail__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--gold-soft);
  border-radius: 14px;
}

.detail__body {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.85;
}

.detail__features {
  display: grid;
  gap: 0.65rem;
}

.detail__features li {
  position: relative;
  padding: 0.85rem 1rem;
  padding-inline-start: 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text-soft);
}

.detail__features li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 55%;
  background: var(--gold);
  border-radius: 2px;
}

.detail__steps {
  display: grid;
  gap: 0.75rem;
  counter-reset: none;
}

.detail__steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.detail__steps span {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.85rem;
}

.detail__steps p {
  color: var(--text-soft);
  padding-top: 0.45rem;
}

.detail__cta {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1px solid var(--line);
}

.detail__cta h3 {
  margin-top: 0;
}

.detail__cta p {
  color: var(--text-soft);
  margin-bottom: 0.25rem;
}

@media (max-width: 1024px) {
  .detail {
    grid-template-columns: 1fr;
  }

  .detail__media {
    position: static;
    min-height: 280px;
  }

  .detail__media img {
    min-height: 280px;
  }
}

.header__inner {
  height: calc(var(--header-h) - 12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-inline: 1.1rem;
  border-radius: var(--radius);
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s, border-color 0.35s;
  border: 1px solid transparent;
}

.header.is-scrolled .header__inner {
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  backdrop-filter: blur(20px) saturate(1.4);
  border-color: var(--line);
  box-shadow: var(--shadow);
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo__img {
  display: block;
  height: 52px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 2px;
}

.logo__img--footer {
  height: 88px;
  background: #fff;
  border-radius: 12px;
  padding: 6px;
}

.preloader__logo {
  width: min(220px, 55vw);
  height: auto;
  display: block;
  margin-inline: auto;
  background: #fff;
  border-radius: 16px;
  padding: 12px;
}

.logo__mark {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  font-weight: 800;
  font-size: 1.3rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.logo__mark::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 60%;
  height: 60%;
  background: var(--gold);
  opacity: 0.2;
  border-radius: 50%;
}

.header.is-scrolled .logo__mark {
  background: linear-gradient(145deg, #1a4a75, #0e3052);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__text strong {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo__text small {
  font-size: 0.68rem;
  color: var(--text-soft);
  font-weight: 500;
}

.header:not(.is-scrolled) .logo__text strong,
.header:not(.is-scrolled) .logo__text small,
.header:not(.is-scrolled) .nav a,
.header:not(.is-scrolled) .icon-btn {
  color: #fff;
}

.header:not(.is-scrolled) .logo__text small {
  color: rgba(255, 255, 255, 0.65);
}

.header:not(.is-scrolled) .icon-btn {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem;
  border-radius: 12px;
}

.header.is-scrolled .nav {
  background: color-mix(in srgb, var(--bg-alt) 70%, transparent);
}

.nav a {
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  opacity: 0.88;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  transition: opacity 0.25s, background 0.25s, color 0.25s;
}

.nav a::after {
  display: none;
}

.nav a:hover {
  opacity: 1;
  background: color-mix(in srgb, var(--gold) 14%, transparent);
}

.header:not(.is-scrolled) .nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: 0.3s;
}

.header:not(.is-scrolled) .nav-toggle {
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenburns 24s var(--ease) forwards;
}

@keyframes kenburns {
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 59, 99, 0.5) 0%, rgba(18, 59, 99, 0.2) 38%, rgba(18, 59, 99, 0.92) 100%),
    linear-gradient(105deg, rgba(18, 59, 99, 0.82) 0%, rgba(18, 59, 99, 0.15) 58%, transparent 78%);
}

.hero__overlay::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(90deg, transparent, rgba(247, 148, 29, 0.08), transparent);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: calc(var(--header-h) + 3.5rem) 4.5rem;
  max-width: 780px;
  margin-inline: 0;
  animation: heroIn 1.1s var(--ease) 0.15s both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__brand {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 1.1rem;
  color: #fff;
}

.hero__logo {
  width: min(220px, 52vw);
  height: auto;
  margin-bottom: 0.85rem;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 12px 40px rgba(18, 59, 99, 0.25);
}

.hero__accent,
.hero__brand::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  background: var(--gold);
  margin: 0.35rem 0 1.1rem;
  border-radius: 4px;
}

.hero__brand::after {
  margin-top: 1.1rem;
}

.hero h1 {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  max-width: 22ch;
  margin-bottom: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero__lead {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 44ch;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  z-index: 2;
}

.hero__scroll span {
  display: block;
  width: 3px;
  height: 8px;
  margin: 8px auto;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.75rem;
  align-items: stretch;
}

.about__story p {
  color: var(--text-soft);
  font-size: 1.1rem;
  margin-bottom: 2.25rem;
  line-height: 1.85;
}

.about__years {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.about__years::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold);
}

.about__years strong {
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
}

.about__years span {
  color: var(--text-soft);
  font-weight: 600;
  max-width: 12ch;
  font-size: 0.98rem;
}

.about__cards {
  display: grid;
  gap: 1rem;
}

.about__cards article {
  background: var(--surface);
  padding: 1.5rem 1.5rem 1.5rem 1.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), border-color 0.3s;
  position: relative;
}

.about__cards article:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--gold) 35%, var(--line));
}

.about__cards h3 {
  font-size: 1.12rem;
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}

.about__cards p {
  color: var(--text-soft);
  font-size: 0.96rem;
}

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.service-card {
  background: var(--surface);
  padding: 1.85rem 1.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.45s var(--ease), border-color 0.35s, box-shadow 0.45s, background 0.35s;
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
}

.service-card__link {
  display: inline-flex;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  inset-inline-end: -30%;
  top: -30%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--gold) 40%, var(--line));
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
  background: var(--gold-soft);
  border-radius: 14px;
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--text-soft);
  font-size: 0.94rem;
  position: relative;
  z-index: 1;
}

/* Projects */
.projects__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
  padding: 0.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  width: fit-content;
  box-shadow: var(--shadow);
}

.projects__filters button {
  border: 0;
  background: transparent;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-soft);
  border-radius: var(--radius-sm);
  transition: 0.3s var(--ease);
}

.projects__filters button.is-active,
.projects__filters button:hover {
  background: var(--navy);
  color: #fff;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  min-height: 360px;
  cursor: pointer;
  isolation: isolate;
  border-radius: var(--radius-lg);
}

.project-card:nth-child(3),
.project-card:nth-child(4) {
  min-height: 320px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease), opacity 0.45s;
  opacity: 0.8;
}

.project-card:hover img {
  transform: scale(1.1);
  opacity: 0.45;
}

.project-card__body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.85rem;
  color: #fff;
  background: linear-gradient(transparent 0%, rgba(5, 12, 22, 0.88) 55%);
  z-index: 1;
  transform: translateY(12px);
  transition: transform 0.5s var(--ease);
}

.project-card:hover .project-card__body {
  transform: translateY(0);
}

.project-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.project-card__meta span {
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.project-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.project-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-card.is-hidden {
  display: none;
}

/* Why */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.why-item {
  padding: 1.85rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  position: relative;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.why-item__num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gold-soft);
}

.why-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.why-item p {
  color: var(--text-soft);
  font-size: 0.94rem;
}

/* Stats */
.stats {
  position: relative;
  padding: clamp(2.75rem, 5vw, 4rem) 0;
  color: #fff;
  overflow: hidden;
}

.stats__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(18, 59, 99, 0.94), rgba(26, 74, 117, 0.88)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=70")
      center / cover;
}

.stats__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(247, 148, 29, 0.18), transparent 60%);
}

.stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  text-align: center;
}

.stat {
  padding: 1.75rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.stat strong {
  display: block;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--gold-hot);
  line-height: 1.1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.04em;
}

.stat span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Certs */
.certs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.cert-card {
  text-align: center;
  padding: 2.1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cert-card__badge {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.15rem;
  border: 2px solid var(--gold);
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  background: var(--gold-soft);
  transform: rotate(-3deg);
}

.cert-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.cert-card p {
  color: var(--text-soft);
  font-size: 0.88rem;
}

/* Clients */
.clients__marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.clients__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.clients__track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  to { transform: translateX(50%); }
}

html[dir="ltr"] .clients__track {
  animation-name: marqueeLtr;
}

@keyframes marqueeLtr {
  to { transform: translateX(-50%); }
}

.client-logo {
  min-width: 190px;
  height: 92px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-soft);
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 1rem;
  text-align: center;
  font-size: 0.95rem;
  transition: border-color 0.3s, color 0.3s;
}

.client-logo:hover {
  border-color: color-mix(in srgb, var(--gold) 45%, var(--line));
  color: var(--text);
}

/* Testimonials */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial__stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

.testimonial p {
  color: var(--text-soft);
  flex: 1;
  font-size: 1.02rem;
  line-height: 1.75;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.testimonial__avatar {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--navy), var(--navy-3));
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.testimonial strong {
  display: block;
  font-size: 0.98rem;
}

.testimonial small {
  color: var(--text-soft);
}

/* FAQ */
.faq__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.faq__layout .section__head {
  margin-bottom: 0;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  text-align: start;
  background: transparent;
  border: 0;
  padding: 1.35rem 0;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  letter-spacing: -0.01em;
}

.faq-item button span {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.35s var(--ease), background 0.3s;
}

.faq-item.is-open button span {
  transform: rotate(45deg);
  background: var(--gold);
  color: #2c2c2c;
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.35s;
  color: var(--text-soft);
}

.faq-item.is-open .faq-item__body {
  max-height: 240px;
  padding-bottom: 1.35rem;
}

/* Trust */
.trust__block {
  margin-bottom: 2rem;
}

.trust__block:last-child {
  margin-bottom: 0;
}

.trust__label {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

/* Forms / Contact hub */
.quote__intro p,
.careers__intro p,
.quote__points {
  color: var(--text-soft);
}

.contact__panel-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.quote__intro h3,
.careers__intro h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin: 0 0 0.75rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.quote__points {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.65rem;
}

.quote__points li {
  padding: 0.85rem 1rem;
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding-inline-start: 1.15rem;
}

.quote__points li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 55%;
  background: var(--gold);
  border-radius: 2px;
}

.form {
  background: var(--surface);
  color: var(--text);
  padding: 1.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.05rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.45rem;
}

.form label span {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-soft);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 0.9rem 1rem;
  outline: none;
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
  background: var(--surface);
}

.form textarea {
  resize: vertical;
  min-height: 110px;
}

.form__note {
  font-size: 0.92rem;
  color: #1f7a45;
  font-weight: 600;
}

/* Contact hub */
.contact__hub {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.75rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}

.contact__tabs button {
  border: 0;
  background: transparent;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--text-soft);
  cursor: pointer;
  transition: 0.25s var(--ease);
}

.contact__tabs button.is-active,
.contact__tabs button:hover {
  background: var(--navy);
  color: #fff;
}

.contact__panels {
  padding: 1.75rem;
}

.contact__hub .form {
  box-shadow: none;
}

.contact__panel[hidden] {
  display: none;
}

.contact__info {
  display: grid;
  gap: 0.75rem;
}

.contact__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color 0.3s, transform 0.3s;
}

.contact__item:hover {
  border-color: color-mix(in srgb, var(--gold) 35%, var(--line));
  transform: translateX(-3px);
}

html[dir="ltr"] .contact__item:hover {
  transform: translateX(3px);
}

.contact__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: 12px;
}

.contact__item strong {
  display: block;
  margin-bottom: 0.15rem;
}

.contact__item span:last-child,
.contact__item div span {
  color: var(--text-soft);
}

.social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s,
    border-color 0.25s, box-shadow 0.25s;
}

.social a svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.social a:hover,
.social a:focus-visible {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(18, 59, 99, 0.2);
  outline: none;
}

.map {
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 340px;
  border-radius: var(--radius-lg);
}

.map iframe {
  width: 100%;
  height: 340px;
  border: 0;
  filter: grayscale(0.4) contrast(1.05) brightness(0.95);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0b2945 0%, var(--navy) 58%, #0d3153 100%);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 3.5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset-inline-end: -10%;
  top: -20%;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(247, 148, 29, 0.12), transparent 65%);
  pointer-events: none;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.45fr) repeat(2, minmax(150px, 0.8fr)) minmax(220px, 1.1fr);
  align-items: start;
  gap: clamp(1.75rem, 3vw, 3.5rem);
  padding-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.footer__grid > div:not(.footer__brand) {
  padding-top: 0.65rem;
}

.footer .logo__text strong,
.footer .logo__text small {
  color: #fff;
}

.footer .logo__text small {
  color: rgba(255, 255, 255, 0.55);
}

.footer__brand p {
  margin-top: 1.25rem;
  max-width: 34ch;
  line-height: 1.9;
  font-size: 0.95rem;
}

.footer h4 {
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  font-size: 1rem;
  letter-spacing: -0.01em;
  position: relative;
}

.footer h4::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}

.footer__phones {
  display: block;
  margin-bottom: 0.65rem;
}

.footer h4[data-i18n="footerContact"] + .footer__phones a,
.footer__phones a {
  width: fit-content;
  margin-top: 0.15rem;
  direction: ltr;
  text-align: start;
}

.footer__phones a + a {
  margin-top: 0.15rem;
}

.footer a,
.footer p {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.94rem;
  line-height: 1.75;
  transition: color 0.25s, transform 0.25s;
}

.footer a:hover {
  color: var(--gold-hot);
  transform: translateX(-3px);
}

.footer .social a {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.09);
  margin: 0;
}

.footer .social a:hover,
.footer .social a:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #2c2c2c;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(247, 148, 29, 0.24);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.15rem 0;
  font-size: 0.9rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.08);
}

.footer__bottom p {
  margin: 0;
}

/* Float actions */
.float-actions {
  position: fixed;
  inset-inline-end: 1.15rem;
  bottom: 1.15rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s var(--ease), opacity 0.35s;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.04);
}

.float-btn--wa {
  background: #22c55e;
}

.float-btn--call {
  background: var(--navy-3);
}

.float-btn--top {
  background: var(--gold);
  color: #2c2c2c;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.float-btn--top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(18, 59, 99, 0.94);
  display: grid;
  place-items: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(100%, 1000px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
  position: absolute;
  top: 1.15rem;
  inset-inline-end: 1.25rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  transition: background 0.25s;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.lightbox__caption {
  position: absolute;
  bottom: 1.75rem;
  color: #fff;
  text-align: center;
  max-width: 640px;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .about__grid,
  .faq__layout,
  .contact__panel-grid {
    grid-template-columns: 1fr;
  }

  .faq__layout .section__head {
    position: static;
  }

  .services__grid,
  .why__grid,
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__grid,
  .certs__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav {
    position: fixed;
    inset: calc(var(--header-h) + 4px) 1.25rem auto;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    gap: 0.15rem;
    transform: translateY(-16px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: 0.4s var(--ease);
    z-index: 999;
  }

  .header.is-scrolled .nav {
    background: var(--surface);
  }

  .nav.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 1rem;
    color: var(--text) !important;
    border-radius: var(--radius-sm);
  }

  .header:not(.is-scrolled) .nav a {
    color: var(--text) !important;
  }

  .nav-toggle {
    display: flex;
  }

  .header__actions .btn--sm {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 1.4rem, var(--container));
  }

  .header {
    padding-top: 8px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero__content {
    padding-block: calc(var(--header-h) + 3.5rem) 5.5rem;
  }

  .projects__grid,
  .services__grid,
  .why__grid,
  .testimonials__grid,
  .form__row {
    grid-template-columns: 1fr;
  }

  .projects__filters {
    width: 100%;
  }

  .project-card {
    min-height: 280px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .stats__grid,
  .certs__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .logo__img {
    height: 44px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Equipment video page */
.equipment__inner {
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

.equipment__video {
  margin-bottom: 1.75rem;
}

.equipment-video {
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  background: #0a1628;
  box-shadow: 0 18px 48px rgba(18, 59, 99, 0.18);
}

.equipment-video video {
  display: block;
  width: 100%;
  max-height: 540px;
  background: #000;
}

.equipment-video--embed {
  position: relative;
  aspect-ratio: 16 / 9;
}

.equipment-video--embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.equipment__text {
  max-width: 680px;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.equipment__empty {
  padding: 3rem 1.5rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg, 16px);
  color: var(--muted);
  background: var(--surface);
}

.equipment__pdf {
  margin: 0 0 2rem;
}

.equipment-pdf h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.equipment-pdf__frame {
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(18, 59, 99, 0.12);
  min-height: 640px;
}

.equipment-pdf__frame iframe {
  display: block;
  width: 100%;
  height: 640px;
  border: 0;
  background: #fff;
}

.equipment-pdf__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

@media (max-width: 700px) {
  .equipment-pdf__frame,
  .equipment-pdf__frame iframe {
    min-height: 420px;
    height: 420px;
  }
}
