:root {
  --blue: #0b3d91;
  --blue-bright: #1457b8;
  --blue-deep: #06183e;
  --red: #e0443e;
  --red-dark: #bd302b;
  --ink: #172033;
  --muted: #536176;
  --line: #dce3ec;
  --surface: #f3f7fc;
  --surface-blue: #edf3fb;
  --white: #ffffff;
  --success: #11823b;
  --shadow-sm: 0 8px 30px rgba(6, 24, 62, 0.08);
  --shadow-md: 0 22px 60px rgba(6, 24, 62, 0.16);
  --radius-sm: 8px;
  --radius: 15px;
  --radius-lg: 24px;
  --container: 1280px;
  --header-height: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html[dir="rtl"] body {
  font-family: "SF Arabic", "Geeza Pro", "Noto Naskh Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-block-start: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

p {
  margin-block-end: 0;
}

::selection {
  background: rgba(237, 53, 43, 0.18);
  color: var(--blue-deep);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 {
  letter-spacing: 0;
  line-height: 1.42;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(74px, 8vw, 122px);
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  inset-block-start: 10px;
  inset-inline-start: 12px;
  translate: 0 -180%;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--blue);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: translate 180ms ease;
}

.skip-link:focus {
  translate: 0 0;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background-color 220ms ease;
}

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

.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

html[dir="rtl"] .button svg,
html[dir="rtl"] .text-link--arrow svg {
  transform: scaleX(-1);
}

.button--primary {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  color: var(--white);
  box-shadow: 0 10px 28px rgba(6, 63, 145, 0.24);
}

.button--primary:hover {
  background: linear-gradient(135deg, #0e5fc8, #052f75);
  box-shadow: 0 15px 32px rgba(6, 63, 145, 0.31);
}

.button--accent {
  background: linear-gradient(135deg, #d63b35, #c9322d);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(201, 50, 45, 0.22);
}

.button--accent:hover {
  background: linear-gradient(135deg, #c9322d, #a92724);
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-block-end: 2px solid currentColor;
  color: var(--blue);
  font-weight: 800;
  line-height: 1.8;
  transition: color 180ms ease, gap 220ms var(--ease);
}

.text-link:hover {
  color: var(--red);
  gap: 13px;
}

.text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.section-heading {
  max-width: 730px;
  margin-block-end: 46px;
}

.section-heading h2 {
  margin-block-end: 18px;
  color: var(--blue-deep);
  font-size: clamp(2.25rem, 4.2vw, 4rem);
}

.section-heading h2 strong {
  color: var(--red);
}

.section-heading p {
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.section-heading--wide {
  max-width: 900px;
}

.section-heading--wide::after,
.faq-heading::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  margin-block-start: 26px;
  border-radius: 999px;
  background: var(--red);
}

.section-heading--split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading--split h2 {
  margin-block-end: 12px;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  inset-block-start: 0;
  height: var(--header-height);
  border-block-end: 1px solid rgba(8, 21, 47, 0.09);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(160%) blur(16px);
  transition: box-shadow 200ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 34px rgba(6, 24, 62, 0.09);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.brand {
  width: clamp(198px, 18vw, 258px);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
  aspect-ratio: 720 / 150;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.6vw, 29px);
  margin-inline: auto;
}

.main-nav a {
  position: relative;
  padding-block: 30px 27px;
  color: #17233a;
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 50%;
  inset-block-end: 17px;
  height: 2px;
  border-radius: 99px;
  background: var(--red);
  transition: inset-inline 200ms var(--ease);
}

.main-nav a:hover,
.main-nav a[aria-current="true"] {
  color: var(--blue);
}

.main-nav a:hover::after,
.main-nav a[aria-current="true"]::after {
  inset-inline: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 17px;
}

.header-cta {
  min-height: 46px;
  padding: 11px 18px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #8992a0;
  white-space: nowrap;
}

.language-switcher button {
  min-width: 26px;
  padding: 6px 1px;
  border: 0;
  background: transparent;
  color: #687388;
  font-size: 0.82rem;
  font-weight: 750;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(6, 63, 145, 0.15);
  border-radius: 10px;
  background: var(--surface-blue);
  color: var(--blue);
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  border-block-end: 1px solid var(--line);
  background: var(--white);
}

.hero-grid {
  min-height: min(720px, calc(100svh - var(--header-height)));
  display: grid;
  grid-template-columns: minmax(390px, 0.86fr) minmax(550px, 1.24fr);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-block: clamp(70px, 9vw, 126px);
  padding-inline-end: clamp(28px, 4vw, 70px);
}

.hero h1 {
  margin-block-end: 28px;
  color: var(--blue);
  font-size: clamp(3.4rem, 6vw, 6rem);
  line-height: 0.94;
}

.hero h1 > span {
  display: block;
}

html[dir="rtl"] .hero h1 {
  font-size: clamp(2.9rem, 5.2vw, 5rem);
  line-height: 1.3;
}

html[dir="rtl"] .section-heading h2 {
  line-height: 1.3;
}

.hero h1 strong {
  color: var(--red);
}

.hero-copy > p:not(.hero-meta) {
  max-width: 590px;
  color: #37445a;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 40px;
  margin-block-start: 36px;
}

.hero-actions .button {
  min-width: 220px;
}

.hero-meta {
  margin-block-start: 30px;
  color: #3d495e;
  font-size: 0.92rem;
  font-weight: 650;
}

.hero-media {
  position: relative;
  width: calc(100% + max(24px, (100vw - var(--container)) / 2));
  overflow: hidden;
  padding-inline-start: 10px;
  background: var(--red);
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  object-position: center center;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
}

html[dir="rtl"] .hero-copy {
  padding-inline-end: 0;
  padding-inline-start: clamp(28px, 4vw, 70px);
}

html[dir="rtl"] .hero-media {
  width: calc(100% + max(24px, (100vw - var(--container)) / 2));
  clip-path: polygon(0 0, 87% 0, 100% 100%, 0 100%);
}

html[dir="rtl"] .hero-media img {
  clip-path: polygon(0 0, 87% 0, 100% 100%, 0 100%);
}

/* Verified profile signals */
.trust-strip {
  padding-block: 30px 34px;
  border-block-end: 1px solid var(--line);
  background: #f7faff;
}

.trust-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-block-end: 18px;
}

.trust-heading-row .eyebrow {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-heading-row a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.trust-heading-row a:hover {
  color: var(--red);
}

.trust-heading-row svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

html[dir="rtl"] .trust-heading-row svg {
  transform: scaleX(-1);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 7px 24px rgba(11, 61, 145, 0.05);
}

.trust-grid > div {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 3px;
  min-height: 94px;
  padding: 18px 25px;
  border-inline-end: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-inline-end: 0;
}

.trust-grid strong {
  color: var(--blue);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.trust-grid strong span {
  color: var(--red);
  font-size: 0.75em;
}

.trust-grid > div > span {
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 650;
  line-height: 1.35;
}

.trust-source {
  margin-block-start: 10px;
  color: #6d7888;
  font-size: 0.7rem;
  text-align: end;
}

/* Services */
.services {
  background: var(--white);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-block-start: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 54px 70px 1fr;
  align-items: start;
  gap: 18px;
  padding: 34px 30px 34px 0;
  border-block-end: 1px solid var(--line);
}

.service-item:nth-child(even) {
  padding-inline-start: 30px;
  padding-inline-end: 0;
  border-inline-start: 1px solid var(--line);
}

.service-number {
  color: var(--red);
  font-size: 1.6rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.service-icon {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-icon .accent-path {
  stroke: var(--red);
}

.service-item h3 {
  margin-block-end: 9px;
  color: var(--ink);
  font-size: 1.18rem;
}

.service-item p {
  max-width: 450px;
  color: var(--muted);
  font-size: 0.95rem;
}

html[dir="rtl"] .service-item {
  padding-inline-start: 0;
  padding-inline-end: 30px;
}

html[dir="rtl"] .service-item:nth-child(even) {
  padding-inline-start: 30px;
  padding-inline-end: 0;
}

.service-extras {
  margin-block-start: 34px;
  padding: 26px 30px;
  border-inline-start: 5px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--surface-blue);
}

html[dir="rtl"] .service-extras {
  border-radius: var(--radius) 0 0 var(--radius);
}

.service-extras h3 {
  margin-block-end: 15px;
  color: var(--blue-deep);
  font-size: 1rem;
}

.service-extras ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-extras li {
  padding: 7px 11px;
  border: 1px solid rgba(11, 61, 145, 0.14);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 750;
}

/* Process */
.process {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, #0c5cbe 0, var(--blue) 44%, #042e72 100%);
  color: var(--white);
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.08) 50%, transparent 50.2%);
  background-size: 140px 100%;
  pointer-events: none;
}

.process .container {
  position: relative;
}

.section-heading--light h2,
.section-heading--light p {
  color: var(--white);
}

.section-heading--light p {
  color: rgba(255, 255, 255, 0.8);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset-block-start: 98px;
  inset-inline-start: 10px;
  width: calc(100% + 34px);
  height: 4px;
  border-radius: 99px;
  background: var(--red);
}

.process-list li {
  position: relative;
  z-index: 1;
}

.process-list svg {
  width: 62px;
  height: 62px;
  margin-block-end: 28px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.process-list svg .accent-path {
  stroke: var(--red);
}

.process-dot {
  position: relative;
  z-index: 1;
  display: block;
  width: 20px;
  height: 20px;
  margin-block-end: 28px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08);
}

.process-list h3 {
  margin-block-end: 12px;
  color: var(--white);
  font-size: 1.18rem;
}

.process-list p {
  max-width: 245px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
}

/* Storage */
.storage {
  background: linear-gradient(135deg, #f7faff 0%, #edf5ff 100%);
}

.storage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(500px, 1.13fr);
  align-items: center;
  gap: clamp(55px, 7vw, 104px);
}

.storage-copy .section-heading {
  margin-block-end: 22px;
}

.storage-copy .section-heading h2 span,
.storage-copy .section-heading h2 strong {
  display: block;
}

.storage-intro {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.06rem;
}

.benefit-list {
  display: grid;
  gap: 23px;
  margin: 34px 0 38px;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: start;
  gap: 17px;
}

.benefit-list svg {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.benefit-list svg .accent-path {
  stroke: var(--red);
}

.benefit-list h3 {
  margin-block-end: 5px;
  font-size: 1.04rem;
}

.benefit-list p {
  color: var(--muted);
  font-size: 0.93rem;
}

.storage-media {
  position: relative;
  min-height: 620px;
}

.storage-media picture {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.storage-media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storage-media-main {
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 78%;
  aspect-ratio: 1.36;
}

.storage-media-secondary {
  inset-inline-end: 0;
  inset-block-end: 0;
  z-index: 2;
  width: 70%;
  aspect-ratio: 1.34;
}

/* Gallery */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 235px;
  gap: 16px;
}

.gallery-item {
  min-width: 0;
  margin: 0;
}

.gallery-item--wide,
.gallery-item--wide-lg {
  grid-column: span 2;
}

.gallery-open {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--surface);
  text-align: start;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.gallery-open:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.gallery-open img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.gallery-open picture {
  display: block;
  min-height: 0;
  overflow: hidden;
}

.gallery-open:hover img {
  transform: scale(1.035);
}

.gallery-open span {
  position: relative;
  z-index: 2;
  padding: 11px 15px 12px;
  border-block-start: 3px solid var(--red);
  background: var(--white);
  color: var(--blue-deep);
  font-size: 0.88rem;
  font-weight: 750;
}

.gallery-disclosure {
  margin-block-start: 18px;
  color: #687588;
  font-size: 0.74rem;
  text-align: end;
}

/* FAQ */
.faq {
  border-block: 1px solid var(--line);
  background: #fbfcfe;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(55px, 8vw, 120px);
}

.faq-heading {
  position: sticky;
  inset-block-start: calc(var(--header-height) + 32px);
  margin-block-end: 0;
}

.faq-heading h2 {
  font-size: clamp(2.25rem, 3.7vw, 3.5rem);
}

.faq-heading .text-link {
  margin-block-start: 32px;
  font-size: 0.92rem;
}

.faq-list {
  border-block-start: 1px solid var(--line);
}

.faq-list details {
  border-block-end: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 48px 23px 2px;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

html[dir="rtl"] .faq-list summary {
  padding: 23px 2px 23px 48px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  inset-inline-end: 8px;
  inset-block-start: 50%;
  width: 16px;
  height: 2px;
  background: var(--blue);
  transition: rotate 180ms ease;
}

.faq-list summary::after {
  rotate: 90deg;
}

.faq-list details[open] summary::after {
  rotate: 0deg;
}

.faq-list details[open] summary {
  color: var(--blue);
}

.faq-list details p {
  max-width: 740px;
  padding: 0 48px 24px 2px;
  color: var(--muted);
}

html[dir="rtl"] .faq-list details p {
  padding: 0 2px 24px 48px;
}

/* Contact */
.contact {
  background: linear-gradient(135deg, #edf5ff, #f8fbff 55%, #eef6ff);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(560px, 1.22fr);
  align-items: start;
  gap: clamp(50px, 8vw, 118px);
}

.contact-copy {
  position: sticky;
  inset-block-start: calc(var(--header-height) + 32px);
}

.contact-copy .section-heading {
  margin-block-end: 18px;
}

.contact-copy .section-heading h2 {
  font-size: clamp(2.4rem, 4.3vw, 4rem);
}

.contact-copy > p {
  max-width: 490px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-direct {
  display: grid;
  gap: 14px;
  margin-block-start: 36px;
}

.contact-direct > a,
.contact-direct > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(6, 63, 145, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
  transition: border-color 180ms ease, background-color 180ms ease, transform 220ms var(--ease);
}

.contact-direct > a:hover {
  transform: translateX(3px);
  border-color: rgba(6, 63, 145, 0.32);
  background: var(--white);
}

html[dir="rtl"] .contact-direct > a:hover {
  transform: translateX(-3px);
}

.contact-direct svg,
.contact-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  padding: 8px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-icon--whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #0b6b35;
}

/* Overrides the shared `.contact-direct svg` disc: the glyph sits on the badge itself. */
.contact-icon--whatsapp svg,
.floating-contact svg {
  width: 22px;
  height: 22px;
  padding: 0;
  border-radius: 0;
  background: none;
  fill: currentColor;
  stroke: none;
}

.floating-contact svg {
  width: 27px;
  height: 27px;
}

.contact-direct small,
.contact-direct strong {
  display: block;
}

.contact-direct small {
  color: var(--muted);
  font-size: 0.77rem;
}

.contact-direct strong {
  color: var(--blue-deep);
  font-size: 0.95rem;
  line-height: 1.45;
}

.request-form {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(6, 63, 145, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

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

.form-grid label > span:first-child {
  display: block;
  margin-block-end: 7px;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 800;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #bec9d7;
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.94rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-grid select {
  -webkit-appearance: none;
  appearance: none;
  padding-inline-end: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B3D91' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 17px 17px;
  cursor: pointer;
}

html[dir="rtl"] .form-grid select {
  background-position: left 13px center;
}

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--blue-bright);
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  box-shadow: none;
}

.request-form.was-validated :invalid:not(fieldset) {
  border-color: var(--red);
}

.form-full {
  grid-column: 1 / -1;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-block: 24px 21px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-block-start: 1px;
  accent-color: var(--blue);
}

.consent a {
  color: var(--blue);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
}

.form-note {
  margin-block-start: 13px;
  color: #566275;
  font-size: 0.76rem;
  text-align: center;
}

.form-status {
  min-height: 1.5em;
  margin-block-start: 7px;
  color: var(--success);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

.form-status.is-error {
  color: var(--red-dark);
}

/* Footer */
.site-footer {
  padding-block: 64px 26px;
  background: linear-gradient(135deg, #052d71, var(--blue) 55%, #084fa9);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) minmax(260px, 1fr) minmax(150px, 0.6fr);
  align-items: start;
  gap: 55px;
}

.brand--footer {
  display: block;
  width: min(300px, 100%);
  padding: 0;
}

.footer-brand p {
  margin-block-start: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.site-footer address {
  display: grid;
  gap: 13px;
  margin: 0;
  font-style: normal;
}

.site-footer address p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 650;
}

.site-footer address svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-footer a:hover {
  color: #d8eaff;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  width: fit-content;
  color: var(--white);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-block-start: 48px;
  padding-block-start: 22px;
  border-block-start: 1px solid rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.floating-contact {
  position: fixed;
  z-index: 800;
  inset-inline-end: 22px;
  inset-block-end: 22px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: #0b6b35;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(9, 70, 31, 0.28);
  transition: transform 220ms var(--ease);
}

.floating-contact:hover {
  transform: translateY(-4px) scale(1.04);
}

.noscript {
  position: fixed;
  z-index: 1200;
  inset-inline: 12px;
  inset-block-end: 12px;
  padding: 14px;
  border-radius: 8px;
  background: var(--blue-deep);
  color: var(--white);
  text-align: center;
}

/* Lightbox */
.lightbox {
  width: min(1080px, calc(100vw - 40px));
  max-height: calc(100dvh - 40px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: var(--radius);
  background: #050a14;
  color: var(--white);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.48);
}

.lightbox::backdrop {
  background: rgba(2, 8, 20, 0.83);
  backdrop-filter: blur(5px);
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: calc(100dvh - 130px);
  object-fit: contain;
  border-radius: var(--radius) var(--radius) 0 0;
}

.lightbox figcaption {
  padding: 15px 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  inset-block-start: -16px;
  inset-inline-end: -16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
}

.lightbox-close svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

/* Legal and utility pages */
.utility-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7faff 0, var(--white) 420px);
}

.utility-header {
  height: 82px;
  display: flex;
  align-items: center;
  border-block-end: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.utility-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-header .brand {
  width: min(240px, 56vw);
}

.utility-back {
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
}

.utility-back:hover {
  color: var(--red);
}

.legal-main {
  padding-block: clamp(58px, 8vw, 100px);
}

.legal-shell {
  width: min(calc(100% - 40px), 900px);
  margin-inline: auto;
}

.legal-shell h1 {
  margin-block-end: 18px;
  color: var(--blue);
  font-size: clamp(2.6rem, 7vw, 4.8rem);
}

.legal-lead {
  max-width: 760px;
  margin-block-end: 42px;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-warning {
  margin-block-end: 36px;
  padding: 18px 20px;
  border: 1px solid rgba(224, 68, 62, 0.28);
  border-inline-start: 5px solid var(--red);
  border-radius: 10px;
  background: #fff7f6;
  color: #67221f;
}

.legal-content {
  display: grid;
  gap: 32px;
}

.legal-content section {
  padding-block-end: 30px;
  border-block-end: 1px solid var(--line);
}

.legal-content h2 {
  margin-block-end: 12px;
  color: var(--blue-deep);
  font-size: 1.35rem;
}

.legal-content h3 {
  margin-block: 20px 8px;
  font-size: 1rem;
}

.legal-content p,
.legal-content li {
  color: #46546a;
}

.legal-content p + p {
  margin-block-start: 12px;
}

.legal-content ul {
  padding-inline-start: 22px;
}

.legal-placeholder {
  color: var(--red-dark);
  font-weight: 800;
}

.utility-footer {
  padding-block: 26px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.84rem;
}

.utility-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.utility-footer a {
  font-weight: 800;
}

/* Responsive */
@media (max-width: 1180px) {
  .header-cta { display: none; }
  .main-nav { gap: 17px; }
  .brand { width: 205px; }
  .hero-grid { grid-template-columns: minmax(350px, 0.9fr) minmax(480px, 1.1fr); }
  .hero h1 { font-size: clamp(3.1rem, 6.4vw, 4.9rem); }
}

@media (max-width: 980px) {
  :root { --header-height: 74px; }

  .container { width: min(calc(100% - 38px), var(--container)); }
  .nav-toggle { display: block; order: 3; }
  .header-actions { margin-inline-start: auto; }
  .language-switcher { order: 2; }
  .main-nav {
    position: fixed;
    z-index: 5;
    inset: var(--header-height) 0 auto;
    max-height: calc(100vh - var(--header-height));
    display: grid;
    justify-content: stretch;
    gap: 0;
    overflow: auto;
    padding: 18px max(24px, calc((100vw - var(--container)) / 2));
    border-block-end: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 20px 35px rgba(6, 24, 62, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 220ms var(--ease), visibility 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 16px 2px;
    border-block-end: 1px solid var(--line);
    font-size: 1rem;
  }

  .main-nav a::after { display: none; }

  .hero-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: min(calc(100% - 38px), 720px);
    margin-inline: auto;
    padding: 66px 0 58px;
  }

  html[dir="rtl"] .hero-copy { padding-inline: 0; }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(3.2rem, 10vw, 5.6rem);
  }

  .hero-media,
  html[dir="rtl"] .hero-media {
    width: 100%;
    min-height: 460px;
    padding: 8px 0 0;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-media img,
  html[dir="rtl"] .hero-media img {
    min-height: 452px;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  }

  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid > div:nth-child(2) { border-inline-end: 0; }
  .trust-grid > div:nth-child(-n + 2) { border-block-end: 1px solid var(--line); }

  .storage-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .storage-media {
    min-height: 600px;
  }

  .contact-copy { position: static; }
  .contact-copy > p { max-width: 650px; }
  .contact-direct { grid-template-columns: repeat(3, 1fr); }
  .contact-direct > a,
  .contact-direct > div { align-items: flex-start; }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 250px;
  }

  .gallery-item--wide-lg { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
  .footer-links { grid-column: 1 / -1; grid-template-columns: repeat(3, max-content); }
}

@media (max-width: 760px) {
  .section { padding-block: 68px; }
  .section-heading { margin-block-end: 34px; }
  .section-heading h2 { font-size: clamp(2.05rem, 9vw, 3.2rem); }

  .service-list { grid-template-columns: 1fr; }
  .service-item,
  .service-item:nth-child(even),
  html[dir="rtl"] .service-item,
  html[dir="rtl"] .service-item:nth-child(even) {
    padding: 27px 0;
    border-inline-start: 0;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
    gap: 44px 28px;
  }

  .process-list li::after { display: none; }
  .process-list svg { margin-block-end: 12px; }
  .process-dot { display: none; }

  .storage-media { min-height: 470px; }
  .storage-media-main { width: 86%; }
  .storage-media-secondary { width: 72%; }

  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-heading { position: static; }

  .contact-direct { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-links { grid-column: auto; }
}

@media (max-width: 560px) {
  :root { --header-height: 68px; }
  .container { width: min(calc(100% - 28px), var(--container)); }

  .brand { width: 168px; }
  .header-inner { gap: 10px; }
  .nav-toggle { width: 42px; height: 42px; }
  .language-switcher { gap: 2px; }
  .language-switcher button { min-width: 23px; font-size: 0.74rem; }

  .hero-copy {
    width: min(calc(100% - 28px), 720px);
    padding-block: 52px 44px;
  }

  .hero h1 {
    margin-block-end: 22px;
    font-size: clamp(2.85rem, 14vw, 4rem);
  }

  .hero-actions { align-items: stretch; gap: 22px; }
  .hero-actions .button { width: 100%; }
  .hero-media,
  html[dir="rtl"] .hero-media { min-height: 330px; }
  .hero-media img,
  html[dir="rtl"] .hero-media img { min-height: 322px; }

  .trust-heading-row { align-items: flex-start; flex-direction: column; gap: 8px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div,
  .trust-grid > div:nth-child(2) { min-height: 78px; border-inline-end: 0; border-block-end: 1px solid var(--line); }
  .trust-grid > div:last-child { border-block-end: 0; }
  .trust-source { text-align: start; }

  .service-item { grid-template-columns: 42px 52px 1fr; gap: 12px; }
  .service-number { font-size: 1.3rem; }
  .service-icon { width: 45px; height: 45px; }

  .process-list { grid-template-columns: 1fr; }
  .process-list p { max-width: 400px; }

  .storage-media { min-height: 330px; }
  .storage-media picture { border-width: 5px; border-radius: 15px; }

  .section-heading--split { align-items: start; flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-item--wide,
  .gallery-item--wide-lg { grid-column: span 1; }

  .request-form { padding: 22px 18px; border-radius: 16px; }
  .footer-bottom { flex-direction: column; gap: 5px; }
  .footer-links { grid-template-columns: 1fr; }
  .floating-contact { inset-inline-end: 14px; inset-block-end: 14px; }

  .lightbox {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
  }

  .lightbox-close { inset-block-start: 8px; inset-inline-end: 8px; border-width: 2px; }

  .utility-header { height: 70px; }
  .utility-header .brand { width: 175px; }
  .utility-footer .container { flex-direction: column; gap: 7px; }
}

@media (max-width: 360px) {
  .container { width: min(calc(100% - 20px), var(--container)); }
  .header-inner { gap: 6px; }
  .brand { width: 142px; }
  .nav-toggle { width: 40px; height: 40px; }
  .language-switcher { gap: 0; }
  .language-switcher span { display: none; }
  .language-switcher button { min-width: 21px; padding-inline: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .floating-contact,
  .hero-actions,
  .gallery-open span,
  .form-submit { display: none !important; }
  .hero-grid,
  .storage-grid,
  .faq-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-media { clip-path: none; width: 100%; }
  .section { padding-block: 32px; }
}
