@font-face {
  font-family: "IRANSans";
  src: url("IRANSans_Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("IRANSans_Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #050b13;
  --bg-soft: #081522;
  --panel: rgba(10, 27, 43, 0.61);
  --panel-strong: rgba(11, 30, 48, 0.83);
  --line: rgba(148, 199, 235, 0.15);
  --line-bright: rgba(83, 182, 247, 0.35);
  --text: #f4f9fd;
  --muted: #a9bac8;
  --blue: #2aabee;
  --blue-light: #67c9ff;
  --blue-dark: #1689ca;
  --gold: #ffc83d;
  --gold-light: #ffe596;
  --success: #63e6be;
  --radius-lg: 32px;
  --radius-md: 22px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  --container: 1180px;
  --pointer-x: 0px;
  --pointer-y: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -5%, rgba(31, 147, 220, 0.16), transparent 38%),
    linear-gradient(180deg, #06101b 0%, var(--bg) 48%, #050a11 100%);
  color: var(--text);
  font-family: "IRANSans", Tahoma, sans-serif;
  font-weight: 500;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 0.7px, transparent 0.7px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  content: "";
  pointer-events: none;
}

::selection {
  background: rgba(42, 171, 238, 0.36);
  color: #fff;
}

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

img,
svg {
  display: block;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: #06101b;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.glass-panel {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(17, 39, 58, 0.76), rgba(7, 20, 33, 0.56));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.055), var(--shadow);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.ambient__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
}

.ambient__glow--blue {
  top: 15%;
  left: -15%;
  width: 560px;
  height: 560px;
  background: #088ed5;
}

.ambient__glow--gold {
  top: 52%;
  right: -8%;
  width: 330px;
  height: 330px;
  background: #a56d00;
  opacity: 0.15;
}

.ambient__star {
  position: absolute;
  object-fit: contain;
  will-change: transform;
}

.ambient__star--one {
  top: 8%;
  left: 4%;
  width: 145px;
  opacity: 0.16;
  filter: blur(1px) drop-shadow(0 0 24px rgba(42, 171, 238, 0.5));
  animation: drift-one 13s ease-in-out infinite;
}

.ambient__star--two {
  top: 36%;
  right: -30px;
  width: 230px;
  opacity: 0.08;
  filter: blur(5px);
  animation: drift-two 18s ease-in-out infinite;
}

.ambient__star--three {
  top: 66%;
  left: 10%;
  width: 90px;
  opacity: 0.1;
  filter: blur(2px);
  animation: drift-one 16s ease-in-out -5s infinite reverse;
}

.ambient__star--four {
  bottom: 0;
  right: 18%;
  width: 340px;
  opacity: 0.035;
  filter: blur(9px);
  animation: drift-two 22s ease-in-out -6s infinite reverse;
}

.ambient__grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(50, 151, 211, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50, 151, 211, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 15%, black, transparent 62%);
}

@keyframes drift-one {
  0%, 100% { transform: translate(var(--pointer-x), var(--pointer-y)) rotate(-7deg); }
  50% { transform: translate(calc(var(--pointer-x) + 16px), calc(var(--pointer-y) - 24px)) rotate(7deg); }
}

@keyframes drift-two {
  0%, 100% { transform: translate(var(--pointer-x), var(--pointer-y)) rotate(8deg); }
  50% { transform: translate(calc(var(--pointer-x) - 20px), calc(var(--pointer-y) + 28px)) rotate(-5deg); }
}

.site-header {
  position: fixed;
  top: 18px;
  right: 0;
  left: 0;
  z-index: 20;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px 14px 10px 12px;
  border-radius: 22px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.site-header.is-scrolled .header-shell {
  border-color: rgba(74, 181, 244, 0.26);
  background: rgba(6, 18, 30, 0.88);
  transform: translateY(-5px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 203, 72, 0.32);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 204, 65, 0.22), rgba(255, 183, 0, 0.06));
  box-shadow: 0 0 28px rgba(255, 192, 37, 0.13), inset 0 1px rgba(255, 255, 255, 0.15);
}

.brand__mark svg {
  width: 22px;
  fill: var(--gold);
  filter: drop-shadow(0 0 8px rgba(255, 200, 61, 0.4));
}

.brand__text {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand__text span {
  color: var(--blue-light);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  color: #b8c7d3;
  font-size: 0.86rem;
}

.main-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a:hover::after {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button svg {
  width: 20px;
  fill: currentColor;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  box-shadow: 0 12px 34px rgba(26, 157, 225, 0.25), inset 0 1px rgba(255, 255, 255, 0.28);
  color: #03121d;
}

.button--primary:hover {
  box-shadow: 0 17px 42px rgba(26, 157, 225, 0.37), inset 0 1px rgba(255, 255, 255, 0.35);
}

.button--ghost {
  border-color: rgba(148, 200, 235, 0.22);
  background: rgba(255, 255, 255, 0.035);
  color: #e6f3fa;
}

.button--ghost:hover {
  border-color: rgba(97, 199, 255, 0.48);
  background: rgba(53, 152, 211, 0.1);
}

.button--compact {
  min-height: 46px;
  padding-inline: 18px;
}

.button--large {
  min-height: 58px;
  padding-inline: 24px;
  border-radius: 17px;
}

.button__arrow {
  margin-right: 4px;
  font-size: 1.25rem;
}

.hero {
  padding-top: 122px;
}

.hero__shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  min-height: 610px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero__shell::before {
  position: absolute;
  top: -50%;
  right: -15%;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 161, 229, 0.22), rgba(29, 161, 229, 0.05) 38%, transparent 70%);
  content: "";
  pointer-events: none;
}

.hero__shell::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(62, 181, 248, 0.65), rgba(255, 203, 67, 0.5), transparent);
  content: "";
}

.hero__content {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 70px 68px 64px 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 4px 13px;
  border: 1px solid rgba(80, 188, 247, 0.18);
  border-radius: 999px;
  background: rgba(44, 153, 215, 0.065);
  color: var(--blue-light);
  font-size: 0.77rem;
}

.eyebrow__pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px var(--success);
}

.eyebrow__pulse::after {
  position: absolute;
  inset: -4px;
  border: 1px solid var(--success);
  border-radius: 50%;
  content: "";
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% { opacity: 0.9; transform: scale(0.5); }
  75%, 100% { opacity: 0; transform: scale(1.6); }
}

.hero h1,
.section-heading h2,
.trust-copy h2,
.contact-copy h2 {
  margin: 20px 0 18px;
  font-size: clamp(2.15rem, 4.3vw, 4.15rem);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.055em;
}

.hero h1 span,
.section-heading h2 span,
.trust-copy h2 span,
.contact-copy h2 span {
  background: linear-gradient(100deg, var(--blue-light), #d3f2ff 48%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 18px rgba(38, 169, 235, 0.15));
}

.hero__lead {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.55vw, 1.08rem);
  line-height: 2.05;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 27px;
  color: #aebfcb;
  font-size: 0.75rem;
}

.hero__assurances span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__assurances svg {
  width: 17px;
  fill: var(--success);
}

.hero__visual {
  position: relative;
  z-index: 2;
  min-height: 610px;
}

.hero__visual::before {
  position: absolute;
  right: 12%;
  bottom: 7%;
  width: 76%;
  height: 16%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  filter: blur(22px);
  content: "";
}

.hero__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(78, 187, 245, 0.19);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
}

.hero__orbit::after {
  position: absolute;
  top: 16%;
  right: 4%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 16px var(--blue);
  content: "";
}

.hero__orbit--outer {
  width: 470px;
  height: 470px;
  animation: orbit 18s linear infinite;
}

.hero__orbit--inner {
  width: 355px;
  height: 355px;
  border-style: dashed;
  opacity: 0.65;
  animation: orbit-reverse 14s linear infinite;
}

@keyframes orbit {
  to { transform: translate(-50%, -50%) rotate(345deg); }
}

@keyframes orbit-reverse {
  to { transform: translate(-50%, -50%) rotate(-375deg); }
}

.mascot-wrap {
  position: absolute;
  inset: 1% -17% -5% -7%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: mascot-float 6s ease-in-out infinite;
}

.mascot-glow {
  position: absolute;
  top: 12%;
  left: 50%;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 194, 31, 0.2), rgba(36, 156, 223, 0.07) 52%, transparent 73%);
  filter: blur(20px);
  transform: translateX(-50%);
}

.mascot {
  position: relative;
  width: min(920px, 165%);
  max-width: none;
  height: 110%;
  object-fit: contain;
  filter: drop-shadow(0 35px 40px rgba(0, 0, 0, 0.45));
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.hero__spark {
  position: absolute;
  z-index: 4;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
  animation: sparkle 3s ease-in-out infinite;
}

.hero__spark--one { top: 18%; right: 20%; }
.hero__spark--two { right: 74%; bottom: 21%; animation-delay: -1.4s; }

@keyframes sparkle {
  0%, 100% { opacity: 0.35; transform: scale(0.65); }
  50% { opacity: 1; transform: scale(1.25); }
}

.floating-badge {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 158px;
  padding: 10px 12px;
  border: 1px solid rgba(173, 216, 241, 0.17);
  border-radius: 16px;
  background: rgba(7, 22, 35, 0.77);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.floating-badge--secure {
  top: 14%;
  right: 4%;
  animation: badge-float 5s ease-in-out infinite;
}

.floating-badge--instant {
  bottom: 18%;
  left: 2%;
  animation: badge-float 5s ease-in-out -2.5s infinite;
}

.floating-badge__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 12px;
  background: rgba(42, 171, 238, 0.14);
  color: var(--blue-light);
}

.floating-badge__icon--gold {
  background: rgba(255, 200, 61, 0.12);
  color: var(--gold);
}

.floating-badge__icon svg {
  width: 20px;
  fill: currentColor;
}

.floating-badge span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.55;
}

.floating-badge small {
  color: #8fa6b6;
  font-size: 0.61rem;
}

.floating-badge strong {
  font-size: 0.76rem;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.stats {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  width: calc(100% - 80px);
  min-height: 118px;
  margin: -44px auto 0;
  padding: 18px 38px;
  border-radius: 24px;
  background: rgba(7, 23, 37, 0.8);
}

.stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.stat__icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border: 1px solid rgba(66, 184, 246, 0.2);
  border-radius: 15px;
  background: rgba(42, 171, 238, 0.1);
  color: var(--blue-light);
}

.stat__icon--gold {
  border-color: rgba(255, 200, 61, 0.2);
  background: rgba(255, 200, 61, 0.09);
  color: var(--gold);
}

.stat__icon svg {
  width: 23px;
  fill: currentColor;
}

.stat__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

.stat__copy strong {
  color: #f6fbff;
  font-size: 1.05rem;
  font-weight: 700;
}

.stat__copy strong b {
  color: var(--gold);
  font-weight: 700;
}

.stat__copy small {
  color: #8ea4b5;
  font-size: 0.68rem;
}

.stats__divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(transparent, rgba(153, 201, 231, 0.2), transparent);
}

.section {
  padding-top: 140px;
}

.section-heading {
  max-width: 750px;
  margin: 0 auto 46px;
  text-align: center;
}

.eyebrow--center {
  justify-content: center;
  border: 0;
  background: transparent;
}

.eyebrow__line {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue));
}

.eyebrow__line:last-child {
  background: linear-gradient(90deg, var(--blue), transparent);
}

.section-heading h2,
.trust-copy h2,
.contact-copy h2 {
  margin-top: 12px;
  font-size: clamp(1.85rem, 3.3vw, 3rem);
  line-height: 1.55;
}

.section-heading p,
.trust-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 265px;
  overflow: hidden;
  padding: 32px;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(76, 188, 248, 0.33);
  background: linear-gradient(135deg, rgba(19, 47, 69, 0.83), rgba(8, 24, 38, 0.68));
  transform: translateY(-7px);
}

.feature-card--wide {
  grid-column: span 2;
  background:
    radial-gradient(circle at 85% 20%, rgba(42, 171, 238, 0.14), transparent 42%),
    linear-gradient(135deg, rgba(17, 39, 58, 0.76), rgba(7, 20, 33, 0.56));
}

.feature-card__number {
  position: absolute;
  top: 21px;
  left: 24px;
  color: rgba(168, 210, 234, 0.16);
  font-family: Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}

.feature-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 25px;
  place-items: center;
  border: 1px solid rgba(87, 195, 251, 0.25);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(42, 171, 238, 0.2), rgba(42, 171, 238, 0.05));
  color: var(--blue-light);
  box-shadow: 0 12px 28px rgba(0, 130, 206, 0.1);
}

.feature-card__icon--gold {
  border-color: rgba(255, 205, 72, 0.24);
  background: linear-gradient(145deg, rgba(255, 200, 61, 0.18), rgba(255, 200, 61, 0.035));
  color: var(--gold);
}

.feature-card__icon svg {
  width: 27px;
  fill: currentColor;
}

.feature-card h3 {
  margin: 0 0 9px;
  font-size: 1.08rem;
}

.feature-card p {
  max-width: 500px;
  margin: 0;
  color: #92a8b7;
  font-size: 0.82rem;
  line-height: 2;
}

.feature-card__shine {
  position: absolute;
  top: -100%;
  left: -45%;
  width: 35%;
  height: 270%;
  background: linear-gradient(90deg, transparent, rgba(121, 210, 255, 0.08), transparent);
  transform: rotate(25deg);
  transition: left 0.7s ease;
}

.feature-card:hover .feature-card__shine {
  left: 120%;
}

.trust-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 48px;
  overflow: hidden;
  padding: 62px;
  border-radius: var(--radius-lg);
}

.trust-shell::before {
  position: absolute;
  right: -180px;
  bottom: -210px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(42, 171, 238, 0.08);
  filter: blur(60px);
  content: "";
}

.trust-copy {
  position: relative;
  z-index: 1;
  align-self: center;
}

.trust-copy h2,
.contact-copy h2 {
  margin-bottom: 17px;
}

.trust-copy h2 span {
  background-image: linear-gradient(100deg, var(--gold), var(--gold-light));
}

.trust-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.trust-points > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(147, 199, 231, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.trust-points > div > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 12px;
  background: rgba(72, 198, 158, 0.11);
  color: var(--success);
}

.trust-points svg {
  width: 20px;
  fill: currentColor;
}

.trust-points p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.6;
}

.trust-points strong {
  font-size: 0.77rem;
}

.trust-points small {
  color: #849bab;
  font-size: 0.63rem;
}

.enamad-card {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 390px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 208, 76, 0.18);
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(255, 202, 55, 0.075), rgba(10, 25, 39, 0.78));
  text-align: center;
}

.enamad-card__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 202, 53, 0.1), transparent 68%);
  transform: translate(-50%, -50%);
}

.enamad-card__label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 0.72rem;
}

.enamad-card__label span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.enamad-card__logo {
  position: relative;
  display: grid;
  width: 170px;
  min-height: 170px;
  place-items: center;
  padding: 14px;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.27);
  transition: transform 0.25s ease;
}

.enamad-card__logo:hover {
  transform: translateY(-4px) scale(1.02);
}

.enamad-card__logo img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  cursor: pointer;
}

.enamad-card > p {
  position: relative;
  margin: 17px 0 12px;
  color: #8ca0ae;
  font-size: 0.66rem;
}

.enamad-card__verified {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-size: 0.64rem;
}

.enamad-card__verified svg {
  width: 17px;
  fill: currentColor;
}

.section--contact {
  padding-bottom: 110px;
}

.contact-shell {
  position: relative;
  overflow: hidden;
  padding: 60px;
  border-radius: var(--radius-lg);
}

.contact-shell__glow {
  position: absolute;
  top: -230px;
  left: -140px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: rgba(17, 144, 213, 0.13);
  filter: blur(70px);
}

.contact-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 35px;
}

.contact-links {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(143, 199, 233, 0.13);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-card:hover {
  border-color: rgba(76, 192, 251, 0.36);
  background: rgba(42, 171, 238, 0.08);
  transform: translateY(-5px);
}

.contact-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: rgba(42, 171, 238, 0.13);
  color: var(--blue-light);
}

.contact-card__icon--gold {
  background: rgba(255, 200, 61, 0.1);
  color: var(--gold);
}

.contact-card__icon svg {
  width: 23px;
  fill: currentColor;
}

.contact-card > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.6;
}

.contact-card small {
  overflow: hidden;
  color: #8098a9;
  font-size: 0.59rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-card strong {
  font-size: 0.84rem;
}

.contact-card__arrow {
  color: #6d8798;
  font-family: Arial, sans-serif;
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-card:hover .contact-card__arrow {
  color: var(--blue-light);
  transform: translate(-3px, -3px);
}

.site-footer {
  border-top: 1px solid rgba(131, 186, 219, 0.1);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 110px;
  gap: 20px;
}

.footer-shell p {
  margin: 0;
  color: #8094a3;
  font-size: 0.72rem;
  text-align: center;
}

.footer-shell small {
  color: #637887;
  font-size: 0.65rem;
  text-align: left;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.feature-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.feature-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.feature-grid .reveal:nth-child(4) { transition-delay: 0.08s; }
.feature-grid .reveal:nth-child(5) { transition-delay: 0.16s; }

@media (max-width: 1050px) {
  .hero__content { padding-right: 42px; }
  .hero__shell { grid-template-columns: 1.05fr 0.95fr; }
  .mascot-wrap { inset-inline: -25% -22%; }
  .hero__orbit--outer { width: 400px; height: 400px; }
  .hero__orbit--inner { width: 305px; height: 305px; }
  .floating-badge--secure { top: 17%; right: 2%; }
  .stats { width: calc(100% - 50px); padding-inline: 24px; }
  .contact-card { padding: 15px; }
  .contact-card__icon { width: 42px; height: 42px; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hero__shell { grid-template-columns: 1fr; }
  .hero__content { padding: 58px 42px 15px; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions, .hero__assurances { justify-content: center; }
  .hero__visual { min-height: 510px; }
  .mascot-wrap { inset: -10% -5% -2%; }
  .mascot { width: min(900px, 165%); }
  .floating-badge--secure { top: 28%; right: 9%; }
  .floating-badge--instant { bottom: 17%; left: 10%; }
  .stats { grid-template-columns: 1fr 1fr 1fr; width: calc(100% - 36px); margin-top: -22px; }
  .stats__divider { display: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card--wide { grid-column: span 2; }
  .trust-shell { grid-template-columns: 1fr; padding: 44px; }
  .enamad-card { min-height: 360px; }
  .contact-shell { padding: 44px; }
  .contact-links { grid-template-columns: 1fr; }
  .contact-card { padding: 17px; }
}

@media (max-width: 640px) {
  :root { --radius-lg: 25px; --radius-md: 19px; }
  html { scroll-padding-top: 92px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .site-header { top: 10px; }
  .header-shell { min-height: 62px; border-radius: 18px; }
  .brand { gap: 7px; }
  .brand__mark { width: 37px; height: 37px; border-radius: 12px; }
  .brand__mark svg { width: 19px; }
  .brand__text { font-size: 1.08rem; }
  .header-shell .button { min-height: 40px; padding-inline: 12px; font-size: 0.7rem; }
  .header-shell .button svg { width: 17px; }
  .hero { padding-top: 88px; }
  .hero__content { padding: 41px 21px 5px; }
  .eyebrow { font-size: 0.68rem; }
  .hero h1 { margin-top: 17px; font-size: clamp(2rem, 10.4vw, 2.75rem); line-height: 1.5; }
  .hero__lead { font-size: 0.84rem; line-height: 2; }
  .hero__actions { display: grid; grid-template-columns: 1fr; margin-top: 26px; }
  .button--large { width: 100%; min-height: 53px; }
  .hero__assurances { gap: 8px 13px; font-size: 0.66rem; }
  .hero__visual { min-height: 400px; }
  .hero__orbit--outer { width: 310px; height: 310px; }
  .hero__orbit--inner { width: 235px; height: 235px; }
  .mascot-wrap { inset: 2% -10% -4%; }
  .mascot { width: min(720px, 140%); height: 100%; }
  .floating-badge { min-width: 132px; padding: 8px; border-radius: 13px; }
  .floating-badge__icon { width: 34px; height: 34px; flex-basis: 34px; }
  .floating-badge strong { font-size: 0.66rem; }
  .floating-badge small { font-size: 0.55rem; }
  .floating-badge--secure { top: 32%; right: 2%; }
  .floating-badge--instant { bottom: 13%; left: 1%; }
  .stats { grid-template-columns: 1fr; gap: 5px; width: calc(100% - 24px); margin-top: -12px; padding: 12px 18px; }
  .stat { justify-content: flex-start; padding: 9px 4px; }
  .stat + .stat { border-top: 1px solid rgba(148, 199, 235, 0.1); }
  .stat__icon { width: 42px; height: 42px; flex-basis: 42px; }
  .section { padding-top: 95px; }
  .section-heading { margin-bottom: 29px; }
  .section-heading h2, .trust-copy h2, .contact-copy h2 { font-size: 1.72rem; }
  .section-heading p, .trust-copy > p, .contact-copy > p { font-size: 0.8rem; line-height: 2; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card--wide { grid-column: auto; min-height: 235px; padding: 25px; }
  .feature-card__icon { margin-bottom: 20px; }
  .trust-shell, .contact-shell { padding: 28px 20px; }
  .trust-points { grid-template-columns: 1fr; }
  .enamad-card { min-height: 340px; padding: 24px 14px; }
  .enamad-card__logo { width: 160px; min-height: 160px; }
  .contact-copy { margin-bottom: 25px; }
  .contact-card { grid-template-columns: auto 1fr auto; gap: 10px; padding: 14px 12px; }
  .section--contact { padding-bottom: 75px; }
  .footer-shell { grid-template-columns: 1fr; justify-items: center; padding-block: 30px; gap: 10px; }
  .footer-shell small { text-align: center; }
  .ambient__star--one { width: 100px; }
  .ambient__star--two { width: 170px; }
}

@media (max-width: 380px) {
  .header-shell .button svg { display: none; }
  .header-shell .button { padding-inline: 10px; }
  .hero__content { padding-inline: 16px; }
  .hero__visual { min-height: 360px; }
  .floating-badge--secure { right: -4px; }
  .floating-badge--instant { left: -4px; }
}

@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;
  }
  .js .reveal { opacity: 1; transform: none; }
}
