:root {
  --navy-950: #020a16;
  --navy-900: #061426;
  --navy-850: #091b30;
  --navy-800: #0d243e;
  --navy-700: #132e4d;
  --gold-700: #9b6b1f;
  --gold-600: #b98428;
  --gold-500: #d5a33f;
  --gold-400: #e7bb60;
  --gold-300: #f2d58e;
  --white: #f8fafc;
  --text-light: #e7ecf2;
  --text-muted: #aab4c3;
  --border-dark: rgba(255,255,255,.1);
  --border-gold: rgba(213,163,63,.5);
  --glass-bg: rgba(6,20,38,.72);
  --container: min(1160px, calc(100% - 40px));
  --gold-gradient: linear-gradient(135deg, #8b5e1c 0%, #f2d58e 38%, #b98428 68%, #fff0b9 100%);
  --font-head: "Cinzel", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text-light);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top right, rgba(213,163,63,.14), transparent 32rem),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 38%, #040d19);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
body.menu-open .topbar { z-index: 900; }
.site-header.menu-is-open { z-index: 1400; }
.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9998;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(242,213,142,.22) 0%, rgba(213,163,63,.12) 24%, transparent 68%);
  mix-blend-mode: screen;
  filter: blur(10px);
  transition: opacity .25s ease;
}
body.has-cursor-glow .cursor-glow { opacity: .72; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
p { color: var(--text-muted); line-height: 1.75; }
h1, h2, h3 { color: var(--white); font-family: var(--font-head); font-weight: 700; letter-spacing: 0; line-height: 1.08; }
h1 { font-size: clamp(2.45rem, 6vw, 5.45rem); margin: 0 0 22px; }
h2 { font-size: clamp(1.85rem, 3.6vw, 3.2rem); margin: 0 0 18px; }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); margin: 0 0 12px; }
main { min-height: 60svh; }
.container { width: var(--container); margin-inline: auto; }
.skip-link {
  position: fixed; z-index: 9999; left: 16px; top: 12px; transform: translateY(-150%);
  background: var(--gold-400); color: var(--navy-950); padding: 12px 16px; border-radius: 4px;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 4px; }

.topbar {
  position: relative;
  border-bottom: 1px solid rgba(213,163,63,.18);
  background:
    radial-gradient(circle at 16% 50%, rgba(242,213,142,.12), transparent 18rem),
    linear-gradient(90deg, rgba(213,163,63,.12), transparent 30%, rgba(213,163,63,.1)),
    rgba(2,10,22,.94);
  font-size: .88rem;
  overflow: hidden;
}
.topbar::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242,213,142,.74), transparent);
  opacity: .75;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 48px; }
.topbar-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-300); font-weight: 900; white-space: nowrap; letter-spacing: .02em; }
.topbar-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-gradient);
  box-shadow: 0 0 18px rgba(231,187,96,.7);
}
.topbar-links { display: flex; align-items: center; gap: 10px; color: var(--text-muted); flex-wrap: nowrap; }
.topbar-pill {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  padding: 7px 13px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    rgba(6,20,38,.52);
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  line-height: 1;
}
.topbar-pill svg, .phone-link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.topbar-pill span, .phone-link span {
  display: inline-block;
  line-height: 1;
}
.topbar-cta { color: var(--navy-950); background: var(--gold-gradient); border-color: rgba(242,213,142,.55); font-weight: 950; padding-inline: 16px; }
.topbar a:hover, .nav-link:hover { color: var(--gold-300); }
.topbar-cta:hover { color: var(--navy-950); filter: brightness(1.05); }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: linear-gradient(180deg, rgba(2,10,22,.78), rgba(2,10,22,.34));
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(10px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled, .inner-header .site-header {
  background:
    linear-gradient(90deg, rgba(213,163,63,.08), transparent 22%, transparent 78%, rgba(213,163,63,.06)),
    rgba(2,10,22,.94);
  border-bottom-color: rgba(213,163,63,.3);
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
}
.nav-wrap {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 22px;
}
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 184px;
  padding: 8px 10px;
  border-radius: 14px;
  transition: transform .24s ease, background .24s ease, box-shadow .24s ease;
}
.brand::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(242,213,142,.18), transparent 68%);
  opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}
.brand:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 0 0 1px rgba(213,163,63,.18), 0 16px 38px rgba(0,0,0,.22);
}
.brand:hover::after { opacity: 1; }
.brand img { width: 188px; max-height: 62px; object-fit: contain; filter: drop-shadow(0 10px 22px rgba(0,0,0,.34)); transition: filter .24s ease, transform .24s ease; }
.brand:hover img { filter: drop-shadow(0 12px 24px rgba(0,0,0,.38)) drop-shadow(0 0 12px rgba(231,187,96,.24)); transform: scale(1.018); }
.brand-text { display: none; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}
.nav-link {
  position: relative;
  color: var(--text-light);
  padding: 11px 12px;
  font-size: .9rem;
  font-weight: 800;
  border-radius: 999px;
  white-space: nowrap;
  transition: color .22s ease, background .22s ease;
}
.nav-link::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 6px; height: 1px;
  background: var(--gold-gradient); transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav-link:hover, .nav-link.is-active { background: rgba(213,163,63,.1); color: var(--gold-300); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 999px;
  padding: 10px 17px;
  color: var(--gold-300);
  font-weight: 900;
  line-height: 1;
  border: 1px solid rgba(213,163,63,.38);
  background:
    linear-gradient(180deg, rgba(242,213,142,.09), rgba(255,255,255,.025)),
    rgba(6,20,38,.54);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: color .22s ease, border-color .22s ease, background .22s ease, transform .22s ease;
}
.header-cta:hover {
  color: var(--navy-950);
  border-color: rgba(242,213,142,.68);
  background: var(--gold-gradient);
  transform: translateY(-1px);
}
.phone-link {
  color: var(--gold-300);
  font-weight: 900;
  white-space: nowrap;
  border: 1px solid rgba(213,163,63,.28);
  border-radius: 999px;
  padding: 11px 14px;
  background:
    linear-gradient(180deg, rgba(242,213,142,.08), rgba(255,255,255,.02)),
    rgba(6,20,38,.54);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.btn {
  position: relative; isolation: isolate; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 13px 20px; border-radius: 4px; border: 1px solid transparent;
  font-weight: 850; cursor: pointer; overflow: hidden;
}
.btn-primary { color: var(--navy-950); background: var(--gold-gradient); box-shadow: 0 16px 34px rgba(213,163,63,.2); }
.btn-secondary { color: var(--white); border-color: var(--border-gold); background: rgba(6,20,38,.58); }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.38), transparent);
  transform: translateX(-120%); transition: transform .45s ease;
}
.btn:hover::before { transform: translateX(120%); }
.menu-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--border-gold); border-radius: 4px; background: rgba(6,20,38,.74); color: var(--white); }
.menu-toggle span { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px auto; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative; min-height: calc(100svh - 42px); display: grid; align-items: center; overflow: hidden;
  padding: 96px 0 70px;
  background: var(--navy-950);
}
.hero::before, .page-hero::before {
  content: ""; position: absolute; inset: 0; opacity: .34; pointer-events: none;
  background-image:
    linear-gradient(rgba(231,187,96,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231,187,96,.1) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: auto;
  height: auto;
  right: auto;
  top: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(2,10,22,.97) 0%, rgba(2,10,22,.88) 33%, rgba(6,20,38,.58) 63%, rgba(2,10,22,.36) 100%),
    radial-gradient(circle at 78% 34%, rgba(213,163,63,.22), transparent 26rem),
    linear-gradient(180deg, rgba(2,10,22,.16), rgba(2,10,22,.62));
  animation: slowFloat 13s ease-in-out infinite alternate;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.035);
  animation: heroFade 18s infinite;
}
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide.is-active { opacity: 1; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .7fr); gap: 54px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-300); text-transform: uppercase; font-size: .76rem; font-weight: 900; letter-spacing: .12em; }
.eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--gold-gradient); }
.hero-copy p { max-width: 680px; font-size: clamp(1rem, 1.4vw, 1.2rem); }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.badge { border: 1px solid rgba(213,163,63,.32); background: rgba(255,255,255,.05); color: var(--text-light); border-radius: 999px; padding: 9px 13px; font-size: .88rem; }
.architect-panel {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(213,163,63,.38);
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(255,255,255,.10), rgba(255,255,255,.025)),
    rgba(6,20,38,.62);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.07), 0 28px 80px rgba(0,0,0,.28);
}
.hero-command-card {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
  backdrop-filter: blur(10px);
}
.hero-command-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border: 1px solid rgba(242,213,142,.28);
  border-radius: 10px;
  background:
    radial-gradient(circle at 74% 14%, rgba(242,213,142,.18), transparent 13rem),
    linear-gradient(180deg, rgba(2,10,22,.28), rgba(2,10,22,.68));
}
.hero-command-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,213,142,.22), transparent 68%);
  filter: blur(2px);
  opacity: .9;
  pointer-events: none;
}
.blueprint-lines {
  position: absolute;
  inset: 34px 30px;
  z-index: -1;
  opacity: .62;
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(231,187,96,.35) 16% 16.4%, transparent 16.4% 42%, rgba(231,187,96,.22) 42% 42.4%, transparent 42.4% 72%, rgba(231,187,96,.32) 72% 72.4%, transparent 72.4%),
    linear-gradient(180deg, transparent 0 26%, rgba(231,187,96,.28) 26% 26.4%, transparent 26.4% 58%, rgba(231,187,96,.2) 58% 58.4%, transparent 58.4%);
  clip-path: polygon(0 100%, 0 48%, 16% 48%, 16% 22%, 36% 22%, 36% 60%, 56% 60%, 56% 8%, 82% 8%, 82% 100%);
  border-left: 2px solid rgba(231,187,96,.6);
  border-bottom: 2px solid rgba(231,187,96,.6);
  filter: drop-shadow(0 0 16px rgba(213,163,63,.24));
  animation: drawGlow 3.5s ease-in-out infinite alternate;
}
.command-card-top,
.panel-signature {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  border: 1px solid rgba(213,163,63,.28);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--gold-300);
  background: rgba(2,10,22,.44);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-gradient);
  box-shadow: 0 0 18px rgba(242,213,142,.8);
}
.command-card-main {
  max-width: 390px;
  margin-top: 64px;
}
.eyebrow.mini {
  font-size: .68rem;
  margin-bottom: 10px;
}
.command-card-main h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  margin-bottom: 14px;
}
.command-card-main p {
  max-width: 360px;
  margin-bottom: 0;
}
.command-stack {
  display: grid;
  gap: 12px;
  margin: 28px 0 22px auto;
  width: min(360px, 100%);
}
.command-mini-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 13px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  padding: 13px;
  background:
    linear-gradient(110deg, rgba(242,213,142,.09), rgba(255,255,255,.035)),
    rgba(2,10,22,.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 12px 28px rgba(0,0,0,.18);
}
.mini-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--gold-300);
  border: 1px solid rgba(231,187,96,.45);
  background: rgba(213,163,63,.08);
}
.mini-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.command-mini-card strong {
  display: block;
  color: var(--white);
  line-height: 1.25;
}
.command-mini-card small {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  line-height: 1.45;
}
.panel-signature {
  margin-top: auto;
  text-transform: none;
  letter-spacing: 0;
  font-size: .95rem;
}

section { position: relative; padding: 86px 0; }
.section-head { max-width: 760px; margin-bottom: 36px; }
.section-head.center { text-align: center; margin-inline: auto; }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  position: relative; overflow: hidden; border-radius: 8px; border: 1px solid var(--border-dark);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  padding: 26px; min-height: 100%; box-shadow: 0 22px 54px rgba(0,0,0,.16);
}
.card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(213,163,63,.12), transparent);
  transform: translateX(-120%); transition: transform .55s ease;
}
.card:hover::before { transform: translateX(120%); }
.icon {
  width: 48px; height: 48px; border: 1px solid var(--border-gold); border-radius: 8px; display: grid; place-items: center;
  color: var(--gold-300); background: rgba(213,163,63,.08); margin-bottom: 18px; font-weight: 900;
}
.link-more { color: var(--gold-300); font-weight: 850; display: inline-flex; margin-top: 12px; }
.band { background: linear-gradient(180deg, rgba(13,36,62,.52), rgba(6,20,38,.18)); border-block: 1px solid var(--border-dark); }
.why-premium {
  background:
    radial-gradient(circle at 50% 10%, rgba(242,213,142,.12), transparent 32rem),
    linear-gradient(180deg, rgba(13,36,62,.55), rgba(2,10,22,.72));
}
.why-premium .grid {
  position: relative;
}
.why-card {
  min-height: 300px;
  padding: 32px;
  border-radius: 12px;
  border-color: rgba(213,163,63,.2);
  background:
    linear-gradient(145deg, rgba(242,213,142,.08), transparent 30%, rgba(255,255,255,.035)),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
    rgba(6,20,38,.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 24px 70px rgba(0,0,0,.22);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.why-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(242,213,142,.86), transparent);
  opacity: .68;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242,213,142,.46);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 34px 86px rgba(0,0,0,.3), 0 0 36px rgba(213,163,63,.08);
}
.why-index {
  position: absolute;
  right: 26px;
  top: 24px;
  color: rgba(242,213,142,.15);
  font-family: var(--font-head);
  font-size: 2.55rem;
  font-weight: 800;
}
.why-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 18px;
  color: var(--gold-300);
  border: 1px solid rgba(231,187,96,.48);
  background:
    radial-gradient(circle at 35% 25%, rgba(242,213,142,.18), transparent 58%),
    rgba(213,163,63,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 14px 34px rgba(0,0,0,.22);
}
.why-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(231,187,96,.24));
}
.why-card h3 {
  max-width: 360px;
}
.why-card p {
  margin-bottom: 0;
  font-size: 1.01rem;
}
.why-signature {
  margin: 48px auto 0;
  max-width: 880px;
  text-align: center;
  padding: 28px;
  border: 1px solid rgba(213,163,63,.25);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(213,163,63,.08), rgba(255,255,255,.035), rgba(213,163,63,.08)),
    rgba(6,20,38,.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.why-signature span {
  color: var(--gold-300);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
.why-signature h2 {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: clamp(1.45rem, 3vw, 2.45rem);
}
.trust-strip {
  padding: 74px 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(231,187,96,.16), transparent 26rem),
    linear-gradient(180deg, rgba(13,36,62,.56), rgba(2,10,22,.76));
}
.trust-strip .grid { align-items: stretch; }
.trust-card {
  min-height: 330px;
  padding: 32px;
  border-color: rgba(213,163,63,.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
    radial-gradient(circle at 20% 0%, rgba(213,163,63,.14), transparent 16rem);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 24px 70px rgba(0,0,0,.24);
}
.trust-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(242,213,142,.34), transparent 34%, transparent 66%, rgba(213,163,63,.18)) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border: 1px solid transparent;
  opacity: .62;
}
.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242,213,142,.46);
}
.premium-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 18px;
  color: var(--gold-300);
  background:
    linear-gradient(145deg, rgba(242,213,142,.18), rgba(213,163,63,.04)),
    rgba(2,10,22,.38);
  border: 1px solid rgba(231,187,96,.52);
  box-shadow: inset 0 0 22px rgba(213,163,63,.11), 0 14px 34px rgba(0,0,0,.26);
}
.premium-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(231,187,96,.26));
}
.trust-number {
  position: absolute;
  right: 26px;
  top: 26px;
  color: rgba(242,213,142,.18);
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
}
.trust-card h3 {
  max-width: 260px;
  margin-bottom: 18px;
}
.trust-card p {
  font-size: 1.02rem;
}
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; counter-reset: step; }
.timeline-item { position: relative; padding-top: 54px; }
.timeline-item::before {
  counter-increment: step; content: counter(step); position: absolute; top: 0; left: 0; width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 50%; color: var(--navy-950); background: var(--gold-gradient); font-weight: 900;
}
.packages-showcase {
  background:
    radial-gradient(circle at 50% 22%, rgba(213,163,63,.11), transparent 30rem),
    linear-gradient(180deg, rgba(2,10,22,0), rgba(6,20,38,.28));
}
.package-card { border-color: rgba(213,163,63,.24); }
.premium-package {
  display: flex;
  flex-direction: column;
  min-height: 480px;
  padding: 36px 32px 30px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(242,213,142,.11), transparent 22%, transparent 72%, rgba(213,163,63,.08)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 42px),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    radial-gradient(circle at 18% 12%, rgba(242,213,142,.13), transparent 15rem),
    rgba(6,20,38,.64);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), inset 0 -1px 0 rgba(213,163,63,.09), 0 32px 86px rgba(0,0,0,.28);
  transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease;
}
.premium-package:hover {
  transform: translateY(-8px);
  border-color: rgba(242,213,142,.58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), inset 0 -1px 0 rgba(213,163,63,.14), 0 40px 100px rgba(0,0,0,.34), 0 0 42px rgba(213,163,63,.09);
}
.premium-package .package-topline {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, transparent 4%, rgba(242,213,142,.95), rgba(185,132,40,.8), rgba(242,213,142,.7), transparent 96%);
  opacity: .82;
}
.package-corner::before,
.package-corner::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  pointer-events: none;
}
.package-corner::before {
  left: 16px;
  top: 16px;
  border-left: 1px solid rgba(242,213,142,.34);
  border-top: 1px solid rgba(242,213,142,.34);
}
.package-corner::after {
  right: 16px;
  bottom: 16px;
  border-right: 1px solid rgba(242,213,142,.24);
  border-bottom: 1px solid rgba(242,213,142,.24);
}
.premium-package.featured {
  transform: translateY(-15px);
  border-color: rgba(242,213,142,.72);
  background:
    linear-gradient(145deg, rgba(242,213,142,.18), transparent 26%, transparent 70%, rgba(213,163,63,.13)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 42px),
    linear-gradient(180deg, rgba(242,213,142,.12), rgba(255,255,255,.035)),
    radial-gradient(circle at 20% 12%, rgba(242,213,142,.24), transparent 17rem),
    rgba(10,18,22,.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 38px 95px rgba(213,163,63,.14), 0 28px 90px rgba(0,0,0,.34);
}
.premium-package.featured:hover {
  transform: translateY(-22px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.13), 0 46px 115px rgba(213,163,63,.19), 0 32px 96px rgba(0,0,0,.38);
}
.package-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.package-head > span {
  color: var(--gold-300);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.package-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--gold-300);
  border: 1px solid rgba(231,187,96,.48);
  background: linear-gradient(145deg, rgba(242,213,142,.16), rgba(213,163,63,.035));
}
.package-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.premium-package h3 {
  font-size: clamp(1.55rem, 2.3vw, 2.05rem);
}
.package-title-row {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}
.package-title-row h3 {
  margin: 0;
}
.package-chip,
.included-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  color: var(--gold-300);
  border: 1px solid rgba(213,163,63,.32);
  background: rgba(213,163,63,.08);
  padding: 6px 11px;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.included-label {
  margin-top: 6px;
  color: rgba(242,213,142,.9);
  border-color: rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
}
.premium-package p {
  min-height: 86px;
}
.package-card ul, .check-list { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 10px; }
.package-card li, .check-list li { color: var(--text-light); padding-left: 24px; position: relative; }
.package-card li::before, .check-list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 9px; height: 9px; border: 1px solid var(--gold-400); transform: rotate(45deg); }
.premium-package li {
  padding: 13px 13px 13px 38px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(213,163,63,.075), rgba(255,255,255,.03)),
    rgba(255,255,255,.028);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055);
}
.premium-package li::before {
  left: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background: rgba(213,163,63,.1);
}
.package-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.package-actions .btn {
  width: auto;
  min-width: 132px;
  min-height: 50px;
}
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
.visual-block {
  min-height: 420px; border-radius: 8px; border: 1px solid var(--border-gold);
  background:
    linear-gradient(135deg, rgba(213,163,63,.18), transparent 38%),
    linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(231,187,96,.08) 39px 40px),
    var(--navy-800);
  position: relative; overflow: hidden;
}
.visual-block::after {
  content: ""; position: absolute; inset: auto 10% 12% 10%; height: 45%;
  background: linear-gradient(90deg, transparent 4%, rgba(231,187,96,.55) 4% 5%, transparent 5% 18%, rgba(231,187,96,.5) 18% 19%, transparent 19% 42%, rgba(231,187,96,.45) 42% 43%, transparent 43% 70%, rgba(231,187,96,.5) 70% 71%, transparent 71%);
  border-bottom: 2px solid rgba(231,187,96,.72);
}
.page-hero { position: relative; overflow: hidden; padding: 86px 0 54px; background: linear-gradient(135deg, rgba(6,20,38,.96), rgba(13,36,62,.82)), var(--navy-900); }
.breadcrumb { color: var(--text-muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--gold-300); }
.service-detail { scroll-margin-top: 120px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--border-dark); border-radius: 8px; }
table { width: 100%; min-width: 720px; border-collapse: collapse; background: rgba(6,20,38,.5); }
th, td { text-align: left; padding: 16px; border-bottom: 1px solid var(--border-dark); color: var(--text-light); }
th { color: var(--gold-300); background: rgba(213,163,63,.08); }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.filter-btn { min-height: 44px; border: 1px solid var(--border-gold); background: rgba(255,255,255,.04); color: var(--white); border-radius: 999px; padding: 8px 16px; cursor: pointer; }
.filter-btn.is-active { background: var(--gold-gradient); color: var(--navy-950); font-weight: 900; }
.gallery-item { min-height: 250px; cursor: zoom-in; }
.gallery-photo-card {
  min-height: 320px;
  padding: 0;
  border-color: rgba(213,163,63,.28);
}
.gallery-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}
.gallery-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(2,10,22,.86));
  pointer-events: none;
}
.gallery-photo-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--gold-300);
  font-weight: 900;
}
.gallery-photo-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}
.accordion { display: grid; gap: 12px; }
.accordion-item { border: 1px solid var(--border-dark); border-radius: 8px; overflow: hidden; background: rgba(255,255,255,.035); }
.accordion-button { width: 100%; min-height: 58px; padding: 18px 20px; text-align: left; border: 0; background: transparent; color: var(--white); font-weight: 850; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.accordion-panel p { margin: 0; padding: 0 20px 20px; }
.accordion-item.is-open .accordion-panel { max-height: 260px; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: start; }
.contact-hero {
  background:
    linear-gradient(135deg, rgba(2,10,22,.96), rgba(13,36,62,.78)),
    radial-gradient(circle at 72% 24%, rgba(242,213,142,.16), transparent 26rem),
    var(--navy-900);
}
.contact-premium-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(213,163,63,.12), transparent 28rem),
    linear-gradient(180deg, rgba(6,20,38,.16), rgba(2,10,22,.72));
}
.contact-premium-grid {
  grid-template-columns: minmax(310px, .82fr) minmax(0, 1.18fr);
  gap: 28px;
}
.contact-panel,
.premium-form {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(213,163,63,.28);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(242,213,142,.10), transparent 28%, rgba(255,255,255,.035)),
    rgba(6,20,38,.68);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 30px 86px rgba(0,0,0,.26);
}
.contact-panel { padding: 34px; }
.contact-panel::before,
.premium-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(242,213,142,.88), rgba(185,132,40,.72), transparent);
}
.contact-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,213,142,.17), transparent 70%);
  pointer-events: none;
}
.contact-panel-head { position: relative; z-index: 1; margin-bottom: 26px; }
.contact-panel-head h2, .form-heading h2 { margin-bottom: 12px; }
.contact-methods { display: grid; gap: 12px; position: relative; z-index: 1; }
.contact-method {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(213,163,63,.08), rgba(255,255,255,.035)),
    rgba(2,10,22,.42);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.contact-method:hover {
  transform: translateY(-3px);
  border-color: rgba(242,213,142,.46);
  background:
    linear-gradient(90deg, rgba(213,163,63,.13), rgba(255,255,255,.045)),
    rgba(2,10,22,.5);
}
.contact-method.static:hover { transform: none; }
.contact-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--gold-300);
  border: 1px solid rgba(231,187,96,.48);
  background: rgba(213,163,63,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.contact-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-method strong { display: block; color: var(--white); line-height: 1.2; }
.contact-method small { display: block; color: var(--text-muted); margin-top: 6px; }
.contact-note-card {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(213,163,63,.22);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
}
.contact-note-card strong { color: var(--gold-300); }
.contact-note-card p { margin: 8px 0 12px; }
.contact-note-card span {
  display: block;
  color: var(--text-light);
  font-size: .9rem;
  margin-top: 6px;
}
.premium-form { padding: 34px; }
.form-heading { margin-bottom: 24px; }
.form-heading p { margin-bottom: 0; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form-full { grid-column: 1 / -1; }
.premium-form input,
.premium-form select,
.premium-form textarea {
  border-color: rgba(255,255,255,.11);
  background:
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.03)),
    rgba(2,10,22,.46);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
  border-color: rgba(242,213,142,.58);
  outline: none;
  box-shadow: 0 0 0 3px rgba(213,163,63,.15), inset 0 1px 0 rgba(255,255,255,.06);
}
.premium-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 4px;
}
.form { display: grid; gap: 16px; }
label { color: var(--text-light); font-weight: 750; }
input, select, textarea {
  width: 100%; min-height: 50px; border: 1px solid var(--border-dark); border-radius: 4px; background: rgba(255,255,255,.06);
  color: var(--white); padding: 12px 14px; font: inherit; font-size: 16px;
}
textarea { min-height: 130px; resize: vertical; }
.form-note, .error { font-size: .92rem; color: var(--text-muted); }
.error { color: #ffd0d0; }
.fixed-contact { position: fixed; right: 18px; bottom: 18px; z-index: 900; display: grid; gap: 10px; }
.fixed-contact a { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-gradient); color: var(--navy-950); font-weight: 900; box-shadow: 0 16px 34px rgba(0,0,0,.28); }
.site-footer { border-top: 1px solid rgba(213,163,63,.18); background: #020814; padding: 68px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 28px; }
.footer-logo { width: 190px; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--text-muted); }
.footer-col a:hover { color: var(--gold-300); }
.footer-bottom { margin-top: 44px; padding: 20px 0; border-top: 1px solid var(--border-dark); color: var(--text-muted); display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .92rem; }
.footer-credit a { color: var(--gold-300); font-weight: 800; }
.lightbox { position: fixed; inset: 0; z-index: 2000; display: none; place-items: center; padding: 24px; background: rgba(2,10,22,.9); }
.lightbox.is-open { display: grid; }
.lightbox-content { width: min(920px, 92vw); min-height: min(620px, 72vh); border: 1px solid var(--border-gold); border-radius: 8px; background: linear-gradient(135deg, rgba(213,163,63,.2), rgba(6,20,38,.95)); }
.lightbox-close { position: absolute; right: 22px; top: 18px; width: 46px; height: 46px; border: 1px solid var(--border-gold); background: var(--navy-900); color: var(--white); border-radius: 50%; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes slowFloat { from { transform: translate3d(0,0,0) rotate(0deg); } to { transform: translate3d(-24px,18px,0) rotate(7deg); } }
@keyframes drawGlow { from { opacity: .55; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroFade {
  0% { opacity: 0; transform: scale(1.04); }
  8% { opacity: 1; }
  34% { opacity: 1; }
  44% { opacity: 0; transform: scale(1.085); }
  100% { opacity: 0; transform: scale(1.085); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .cursor-glow { display: none; }
}
