:root {
  --navy: #071d31;
  --navy-2: #0a2a44;
  --gold: #c89a4b;
  --gold-2: #d7ad63;
  --cream: #f8f5ee;
  --text: #0d1828;
  --muted: #5f6672;
  --line: rgba(10, 42, 68, 0.14);
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(5, 18, 31, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  overflow-x: hidden;
  background: #faf7f1;
}

.hero {
  height: 590px;
  min-height: 590px;
  color: var(--white);
  position: relative;
  background-color: var(--navy);
  background-image:
    linear-gradient(
      90deg,
      rgba(3, 20, 37, 0.98) 0%,
      rgba(3, 20, 37, 0.94) 24%,
      rgba(5, 24, 42, 0.72) 39%,
      rgba(7, 29, 49, 0.26) 57%,
      rgba(7, 29, 49, 0.03) 100%
    ),
    url("../assets/uaearchive-hero.png");
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 100%, auto 590px;
  background-position: left top, right top;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 48%, rgba(216, 174, 100, 0.28), transparent 22%),
    linear-gradient(180deg, rgba(7, 29, 49, 0.02), rgba(7, 29, 49, 0.28));
  pointer-events: none;
}

.container {
  width: min(1130px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 0 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
}

.brand-icon {
  width: 31px;
  height: 31px;
  color: var(--gold-2);
  flex: 0 0 31px;
}

.top-note {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  position: relative;
  padding-bottom: 15px;
}

.top-note::after {
  content: "";
  position: absolute;
  width: 84px;
  height: 2px;
  background: var(--gold-2);
  right: 0;
  bottom: 0;
}

.hero-content {
  width: min(650px, 100%);
  padding-bottom: 0;
  margin-top: -20px;
}

.domain-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 600;
  margin-bottom: 22px;
}

.domain-title span {
  color: var(--gold-2);
}

.gold-rule {
  width: 48px;
  height: 3px;
  background: var(--gold-2);
  margin-bottom: 18px;
}

.hero h1 {
  margin-top: -10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4.2vw, 43px);
  line-height: 1.16;
  max-width: 620px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 31px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, var(--gold-2), #bc8840);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(5, 18, 31, 0.28);
  filter: brightness(1.04);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), #b8833b);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--gold-2);
  color: var(--gold-2);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--gold-2);
  color: #071d31;
}

.btn svg {
  width: 19px;
  height: 19px;
}

section {
  padding: 42px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
  font-size: 17px;
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  text-align: center;
  font-size: clamp(31px, 3.1vw, 41px);
  line-height: 1.15;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 13px;
}

.dark {
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.dark .section-header p,
.dark .card p {
  color: rgba(255, 255, 255, 0.78);
}

.dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.dark .card h3 {
  color: var(--gold-2);
}

.section-line {
  width: 43px;
  height: 2px;
  background: var(--gold);
  margin: 18px auto 0;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
}

.direct-contact {
  margin-top: 12px;
  font-size: 13px;
  color: #6b7280;
}

.direct-contact a {
  color: var(--gold-2);
  text-decoration: none;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  text-align: center;
}

.dark .step {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.dark .step h3 {
  color: var(--gold-2);
}

.dark .step p {
  color: rgba(255, 255, 255, 0.78);
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 12px;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0 34px 18px;
}

.value-card {
  text-align: center;
  padding: 0 38px;
  border-right: 1px solid var(--line);
}

.value-card:last-child {
  border-right: 0;
}

.value-icon {
  width: 62px;
  height: 62px;
  color: var(--gold);
  margin: 0 auto 18px;
}

.value-card h3 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 8px;
  font-weight: 700;
}

.value-card p {
  color: #323946;
  font-size: 15px;
  line-height: 1.5;
}

.applications {
  padding-top: 20px;
  padding-bottom: 54px;
}

.price-note {
  max-width: 315px;
  margin: -8px 0 24px;
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 154, 75, 0.08);
  color: #24415d;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 9px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 10px 25px rgba(7, 29, 49, 0.06);
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--navy);
}

.card p {
  color: #3f4651;
  font-size: 15px;
}

.app-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 9px;
  display: block;
  box-shadow: 0 10px 25px rgba(7, 29, 49, 0.12);
  filter: saturate(0.88) contrast(1.02);
}

.app-card h3 {
  margin-top: 15px;
  margin-bottom: 7px;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
}

.app-card p {
  color: #3f4651;
  font-size: 15px;
  line-height: 1.58;
}

.exclusive {
  background:
    radial-gradient(circle at 15% 60%, rgba(201, 154, 75, 0.14), transparent 18%),
    linear-gradient(90deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.exclusive-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
}

.exclusive-decor-left {
  --exclusive-left-opacity: 0.22;
  left: 0;
  top: 0;
  width: 225px;
  height: 100%;
  opacity: var(--exclusive-left-opacity);
  background-image: url("../assets/uae_left.png");
  background-size: cover;
  background-position: left center;
}

.exclusive-decor-right {
  --exclusive-right-opacity: 0.30;
  right: 0;
  bottom: 0;
  width: 460px;
  height: 118px;
  opacity: var(--exclusive-right-opacity);
  background-image: url("../assets/uae_right.png");
  background-size: contain;
  background-position: right bottom;
  mask-image: linear-gradient(90deg, transparent 0%, #000 26%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 26%, #000 100%);
}

.exclusive-inner {
  min-height: 180px;
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 26px;
  position: relative;
  z-index: 2;
}

.exclusive::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 225px;
  background: url("../assets/exclusive-left-arabesque.png") left center / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
  mask-image: linear-gradient(to right, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 70%, transparent 100%);
}

.exclusive::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 460px;
  height: 118px;
  background: url("../assets/exclusive-right-skyline.png") right bottom / contain no-repeat;
  opacity: 0.25;
  pointer-events: none;
  mask-image: linear-gradient(to left, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
}

.key-icon {
  width: 86px;
  height: 86px;
  border: 4px solid var(--gold-2);
  color: var(--gold-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(215, 173, 99, 0.4));
}

.dark .app-card h3 {
  color: var(--gold-2);
}

.dark .app-card p {
  color: rgba(255, 255, 255, 0.78);
}

.key-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.exclusive h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--gold-2);
  font-size: 30px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 9px;
}

.exclusive p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

.inquiry {
  background: #fbf8f2;
  padding: 45px 0 30px;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 70px;
  align-items: start;
}

.inquiry h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(31px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 14px;
}

.inquiry .left-line {
  width: 43px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 22px;
}

.inquiry-lead {
  color: #26303c;
  font-size: 17px;
  max-width: 315px;
  margin-bottom: 28px;
}

.confidentiality {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: #3d4450;
  font-size: 14px;
  max-width: 305px;
}

.confidentiality svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex: 0 0 22px;
  margin-top: 2px;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(7, 29, 49, 0.17);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 4px;
  min-height: 50px;
  padding: 0 16px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  min-height: 88px;
  resize: vertical;
  padding-top: 14px;
}

input:focus,
textarea:focus {
  border-color: rgba(201, 154, 75, 0.85);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 154, 75, 0.13);
}

.submit {
  grid-column: 1 / -1;
  min-height: 52px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold-2), #b8833b);
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: transform 180ms ease, filter 180ms ease;
}

.trust-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
}

.submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.form-message {
  grid-column: 1 / -1;
  display: none;
  padding: 13px 15px;
  border: 1px solid rgba(201, 154, 75, 0.4);
  color: #24415d;
  background: rgba(201, 154, 75, 0.08);
  font-size: 14px;
  border-radius: 4px;
}

footer {
  background: var(--navy);
  color: var(--gold-2);
  text-align: center;
  padding: 21px 24px;
  font-size: 15px;
}

@media (max-width: 980px) {
  .hero {
    height: auto;
    min-height: 620px;
    background-size: 100% 100%, auto 620px;
    background-position: left top, 62% top;
  }

  header {
    padding-bottom: 74px;
  }

  .value-grid,
  .app-grid,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 26px 30px;
  }

  .value-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .exclusive-decor-left {
    width: 170px;
  }

  .exclusive-decor-right {
    width: 360px;
    height: 94px;
  }

  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 660px) {
  .hero {
    min-height: 680px;
    background-size: 100% 100%, auto 680px;
    background-position: left top, 68% top;
  }

  .container {
    width: min(100% - 30px, 1130px);
  }

  header {
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0 64px;
  }

  .top-note {
    font-size: 12px;
    text-align: right;
  }

  .brand {
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  .domain-title {
    font-size: 52px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 15px;
  }

  .btn {
    width: 100%;
    padding-inline: 18px;
  }

  section {
    padding: 36px 0;
  }

  .value-grid,
  .app-grid,
  .grid-4,
  .process {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .value-card,
  .value-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .value-card:last-child {
    border-bottom: 0;
  }

  .exclusive-decor {
    display: none;
  }

  .exclusive-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 32px 0;
  }

  .key-icon {
    margin-left: 0;
  }

  form {
    grid-template-columns: 1fr;
  }

  .inquiry {
    padding-top: 38px;
  }
}