:root {
  --navy-950: #020b1d;
  --navy-900: #06152f;
  --navy-850: #0a1d3e;
  --navy-800: #10264b;
  --ink: #eef4ff;
  --muted: #aebbd0;
  --gold-100: #fff4c8;
  --gold-300: #f3cf78;
  --gold-500: #d49a2f;
  --gold-700: #8c5b12;
  --ivory: #fffaf0;
  --line: rgba(243, 207, 120, 0.22);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --header-h: 88px;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; background: var(--navy-950); }
body { color: var(--ink); overflow-x: hidden; }
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(2px);
}
body::before {
  width: 620px; height: 620px; right: -260px; top: 80px;
  background: radial-gradient(circle, rgba(31, 91, 170, .26), transparent 65%);
}
body::after {
  width: 560px; height: 560px; left: -260px; bottom: -270px;
  background: radial-gradient(circle, rgba(212, 154, 47, .17), transparent 68%);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.opening {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center;
  background:
    radial-gradient(circle at center, rgba(24, 70, 131, .38), transparent 34%),
    linear-gradient(135deg, #020814, #071a3a 60%, #020814);
  transition: opacity .7s ease, visibility .7s ease;
}
.opening.is-hidden { opacity: 0; visibility: hidden; }
.opening__halo {
  position: absolute; width: 280px; height: 280px; border: 1px solid rgba(243,207,120,.25);
  border-radius: 50%; animation: halo 1.5s ease both;
}
.opening__brand {
    display: flex;
    align-items: center;
    gap: 22px;
    animation: openingBrand 1.15s ease both;
}
.opening__brand img { width: 145px; filter: drop-shadow(0 0 26px rgba(243,207,120,.35)); }
.opening__brand strong { display: block; font-family: Georgia, serif; font-size: clamp(2.3rem, 5vw, 4.6rem); letter-spacing: .12em; }
.opening__brand span { display: block; color: var(--gold-300); letter-spacing: .45em; font-size: .78rem; margin-top: 4px; }
.opening__line { position: absolute; width: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-300), transparent); animation: openingLine 1.25s .2s ease both; transform: translateY(72px); }

@keyframes halo { from { transform: scale(.45); opacity: 0; } to { transform: scale(1.35); opacity: .8; } }
@keyframes openingBrand { from { opacity: 0; transform: translateY(18px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes openingLine { to { width: min(420px, 72vw); } }

.site-shell { position: relative; z-index: 1; min-height: 100dvh; opacity: 0; transition: opacity .65s ease; }
.site-shell.is-ready { opacity: 1; }

.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  width: 100%; padding: 0 clamp(22px, 4vw, 76px);
  background: rgba(3, 14, 35, .88); border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.brand{

    display:flex;

    align-items:center;

    gap:14px;

}
.brand img{

    height:52px;
    width:auto;
    object-fit:contain;
    display:block;

}
.brand_copy strong{

    font-size:30px;

    letter-spacing:2px;

}
.brand_copy small{

    font-size:12px;

    letter-spacing:4px;

    color:#C89B3C;

}
.desktop-nav { display: flex; align-items: center; gap: 42px; }
.desktop-nav a, .desktop-nav button { border: 0; background: none; color: #f7f9ff; cursor: pointer; padding: 12px 0; position: relative; }
.desktop-nav a::after, .desktop-nav button::after {
  content: ""; position: absolute; left: 50%; right: 50%; bottom: 3px; height: 1px;
  background: var(--gold-300); transition: .25s ease;
}
.desktop-nav a:hover::after, .desktop-nav button:hover::after { left: 0; right: 0; }
.header-consultation { justify-self: end; }
.menu-button, .mobile-menu { display: none; }

.homepage { width: min(1540px, calc(100% - 48px)); margin: 0 auto; padding: 28px 0 24px; }
.hero { min-height: calc(100dvh - var(--header-h) - 245px); display: grid; grid-template-columns: minmax(330px, .84fr) minmax(610px, 1.35fr); gap: clamp(28px, 4vw, 70px); align-items: center; }
.hero__copy { padding: 26px 0; }
.eyebrow { display: flex; align-items: center; gap: 14px; color: var(--gold-300); font-size: .78rem; font-weight: 800; letter-spacing: .22em; margin: 0 0 18px; }
.eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--gold-300); }
h1 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; font-size: clamp(3rem, 4.55vw, 6.25rem); line-height: .98; letter-spacing: -.04em; margin: 0; max-width: 820px; }
h1 .gold { color: var(--gold-300); }
.hero__description { color: var(--muted); font-size: clamp(1rem, 1.15vw, 1.18rem); line-height: 1.75; max-width: 680px; margin: 24px 0 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button { border: 1px solid transparent; border-radius: 12px; min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-weight: 800; cursor: pointer; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button--gold { color: #271500; background: linear-gradient(135deg, #fff1ae 0%, #d69a2e 52%, #f2ca6f 100%); border-color: rgba(255, 241, 174, .45); box-shadow: 0 12px 30px rgba(211, 151, 38, .24), inset 0 1px 0 rgba(255,255,255,.65); }
.button--gold:hover { box-shadow: 0 16px 36px rgba(211, 151, 38, .36); }
.button--outline { background: rgba(255,255,255,.025); border-color: rgba(243,207,120,.55); color: #f9fbff; }
.button--compact { min-height: 44px; padding: 0 17px; white-space: nowrap; }
.micro-trust { display: flex; flex-wrap: wrap; gap: 16px 24px; margin-top: 24px; color: #d8e0ef; font-size: .83rem; }
.micro-trust span { display: inline-flex; align-items: center; gap: 8px; }
.micro-trust svg { width: 19px; fill: none; stroke: var(--gold-300); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.preview-workspace {
  min-width: 0; border: 1px solid rgba(243,207,120,.55); border-radius: var(--radius-xl);
  background: linear-gradient(165deg, rgba(13,35,69,.95), rgba(2,12,30,.96));
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.025); overflow: hidden;
}
.browser-bar { height: 48px; display: grid; grid-template-columns: 1fr minmax(160px, 320px) 1fr; align-items: center; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.02); }
.browser-dots { display: flex; gap: 7px; }
.browser-dots i { width: 10px; height: 10px; border-radius: 50%; background: #f26b5c; }
.browser-dots i:nth-child(2) { background: #eab64a; }
.browser-dots i:nth-child(3) { background: #4bc277; }
.browser-address { text-align: center; color: #d5deed; font-size: .77rem; padding: 6px 14px; border-radius: 999px; background: rgba(255,255,255,.045); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.browser-status { justify-self: end; color: #b9ffcb; font-size: .72rem; letter-spacing: .08em; }
.browser-status i { display: inline-block; width: 8px; height: 8px; background: #39d278; border-radius: 50%; box-shadow: 0 0 14px #39d278; margin-right: 6px; }
.preview-stage { position: relative; height: clamp(310px, 43vh, 560px); background: #f7f8fb; overflow: hidden; }
.preview-stage iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #fff; opacity: 0; transform: scale(1.015); transition: opacity .55s ease, transform .75s ease; }
.preview-stage iframe.is-loaded { opacity: 1; transform: scale(1); }
.preview-stage iframe.is-switching { opacity: 0; transform: scale(.985); }
.preview-fallback { position: absolute; inset: 0; z-index: 0; display: grid; place-content: center; justify-items: center; gap: 12px; color: #fff; text-align: center; background: radial-gradient(circle at center, #173969, #07172f 68%); }
.preview-fallback__icon { width: 66px; height: 66px; border-radius: 20px; display: grid; place-items: center; color: var(--gold-300); background: rgba(255,255,255,.05); border: 1px solid rgba(243,207,120,.35); }
.preview-fallback__icon svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.preview-fallback strong { font-family: Georgia, serif; font-size: 1.5rem; }
.preview-fallback p { color: var(--muted); margin: 0; }
.preview-vignette { position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 -30px 55px rgba(2,11,29,.18); }
.preview-footer { display: grid; grid-template-columns: minmax(210px, 1fr) auto auto; align-items: center; gap: 18px; padding: 16px 18px; border-top: 1px solid rgba(255,255,255,.08); }
.preview-meta { display: flex; align-items: center; gap: 14px; min-width: 0; }
.preview-meta small { color: var(--gold-300); font-size: .66rem; font-weight: 800; letter-spacing: .12em; }
.preview-meta strong { display: block; font-family: Georgia, serif; font-size: 1.12rem; margin-top: 2px; }
.preview-meta p { color: var(--muted); font-size: .77rem; margin: 3px 0 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 440px; }
.solution-icon { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; color: var(--gold-300); background: rgba(255,255,255,.04); border: 1px solid rgba(243,207,120,.3); }
.solution-icon svg { width: 26px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.preview-stats { display: flex; gap: 8px; }
.preview-stats span { padding: 8px 10px; border-left: 1px solid rgba(255,255,255,.11); color: #d9e2f2; font-size: .7rem; white-space: nowrap; }

.solutions { margin-top: 18px; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.solution-card {
  position: relative; min-width: 0; min-height: 145px; border-radius: var(--radius-lg); border: 1px solid rgba(243,207,120,.18);
  background: linear-gradient(150deg, rgba(255,255,255,.075), rgba(255,255,255,.028));
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 16px; align-items: center; padding: 19px 62px 19px 19px;
  text-align: left; cursor: pointer; color: inherit; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.solution-card:hover { transform: translateY(-4px); border-color: rgba(243,207,120,.48); }
.solution-card.is-active {
  transform: translateY(-5px) scale(1.015); border-color: var(--gold-300);
  background: linear-gradient(145deg, rgba(17,43,84,.98), rgba(4,17,39,.98));
  box-shadow: 0 18px 50px rgba(0,0,0,.32), 0 0 0 1px rgba(243,207,120,.22) inset;
}
.solution-card__order { align-self: start; color: var(--gold-300); font-weight: 800; font-size: .75rem; padding: 7px 8px; border-radius: 8px; border: 1px solid rgba(243,207,120,.3); }
.solution-card__body { min-width: 0; }
.solution-card__icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: var(--gold-300); background: rgba(255,255,255,.04); border: 1px solid rgba(243,207,120,.28); margin-bottom: 10px; }
.solution-card__icon svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.solution-card h2 { font-family: Georgia, serif; font-size: clamp(1.08rem, 1.35vw, 1.48rem); line-height: 1.1; margin: 0; }
.solution-card p {
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.5;
    margin: 7px 0 0;

    display: -webkit-box;
    line-clamp: 2;              /* optional */
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}
.solution-card__status { position: absolute; right: 17px; top: 16px; display: inline-flex; align-items: center; gap: 5px; color: #b9ffcb; font-size: .65rem; letter-spacing: .08em; }
.solution-card__status i { width: 7px; height: 7px; border-radius: 50%; background: #3fd37d; }
.solution-card__arrow { position: absolute; right: 16px; bottom: 15px; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: #281800; background: linear-gradient(135deg, #fff1ae, #d49a2f); }
.solution-card__arrow svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.trust-strip { margin-top: 17px; border: 1px solid rgba(243,207,120,.2); border-radius: 18px; background: rgba(255,255,255,.035); display: grid; grid-template-columns: repeat(3, 1fr); padding: 15px 18px; }
.trust-strip article { display: flex; align-items: center; gap: 14px; padding: 3px 24px; }
.trust-strip article + article { border-left: 1px solid rgba(255,255,255,.1); }
.trust-strip svg { width: 35px; flex: 0 0 auto; fill: none; stroke: var(--gold-300); stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.trust-strip strong { display: block; font-family: Georgia, serif; font-size: 1rem; }
.trust-strip span { color: var(--muted); display: block; margin-top: 3px; font-size: .73rem; }

.reveal { opacity: 0; transform: translateY(22px); }
.site-shell.is-ready .reveal { animation: reveal .72s cubic-bezier(.2,.8,.2,1) both; }
.site-shell.is-ready .reveal--1 { animation-delay: .12s; }
.site-shell.is-ready .reveal--2 { animation-delay: .25s; }
.site-shell.is-ready .reveal--3 { animation-delay: .38s; }
.site-shell.is-ready .reveal--4 { animation-delay: .5s; }
@keyframes reveal { to { opacity: 1; transform: none; } }

.info-dialog { width: min(620px, calc(100% - 28px)); border: 1px solid rgba(243,207,120,.35); border-radius: 24px; color: var(--ink); padding: 32px; background: linear-gradient(155deg, #10264a, #06142d); box-shadow: var(--shadow); }
.info-dialog::backdrop { background: rgba(0,5,16,.74); backdrop-filter: blur(8px); }
.info-dialog h2 { font-family: Georgia, serif; font-weight: 500; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; margin: 0 0 22px; }
.dialog-close { position: absolute; right: 16px; top: 13px; border: 0; background: transparent; color: #fff; font-size: 2rem; cursor: pointer; }
.dialog-lead { color: var(--muted); line-height: 1.7; }
.dialog-action { margin-top: 18px; }
.process-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.process-list li { display: grid; grid-template-columns: 48px 1fr; gap: 14px; padding: 14px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(255,255,255,.035); }
.process-list li > span { color: var(--gold-300); font-weight: 900; }
.process-list strong { font-family: Georgia, serif; }
.process-list p { color: var(--muted); margin: 4px 0 0; font-size: .85rem; }
.noscript { position: fixed; inset: auto 16px 16px; z-index: 2000; padding: 14px; background: #8b1d1d; color: #fff; border-radius: 10px; }

@media (min-width: 1100px) and (min-height: 800px) {
  body { overflow: hidden; }
  .homepage { height: calc(100dvh - var(--header-h)); display: grid; grid-template-rows: 1fr auto auto; }
}

@media (max-width: 1180px) {
  .hero { grid-template-columns: .85fr 1.15fr; gap: 26px; }
  .preview-stats { display: none; }
  .preview-footer { grid-template-columns: 1fr auto; }
  .solution-card { padding: 15px 56px 15px 15px; gap: 11px; }
}

@media (max-width: 900px) {
  :root { --header-h: 76px; }
  body { overflow: auto; }
  .site-header { grid-template-columns: 1fr auto auto; padding: 0 18px; }
  .brand img { width: 43px; height: 43px; }
  .brand__copy strong { font-size: 1.35rem; }
  .brand__copy small { font-size: .5rem; }
  .desktop-nav { display: none; }
  .header-consultation { min-height: 44px; padding: 0 15px; font-size: .82rem; }
  .menu-button { display: grid; place-content: center; gap: 5px; width: 46px; height: 46px; margin-left: 10px; border-radius: 12px; background: rgba(255,255,255,.035); border: 1px solid rgba(243,207,120,.35); cursor: pointer; }
  .menu-button span:not(.sr-only) { display: block; width: 20px; height: 2px; border-radius: 10px; background: #fff; transition: .25s ease; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { display: grid; position: absolute; right: 18px; top: calc(100% + 8px); width: 210px; padding: 10px; border-radius: 16px; border: 1px solid rgba(243,207,120,.25); background: #081a37; box-shadow: var(--shadow); opacity: 0; transform: translateY(-8px); pointer-events: none; transition: .22s ease; }
  .mobile-menu.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .mobile-menu a, .mobile-menu button { border: 0; background: transparent; color: #fff; text-align: left; padding: 12px; border-radius: 10px; cursor: pointer; }
  .mobile-menu a:hover, .mobile-menu button:hover { background: rgba(255,255,255,.05); }
  .homepage { width: min(100% - 28px, 760px); padding-top: 10px; }
  .hero { display: flex; flex-direction: column; min-height: auto; align-items: stretch; gap: 18px; }
  .hero__copy { padding: 28px 0 6px; }
  h1 { font-size: clamp(2.75rem, 11vw, 4.7rem); max-width: 720px; }
  .hero__description { margin-top: 18px; }
  .micro-trust { margin-top: 18px; }
  .preview-stage { height: min(58vw, 430px); min-height: 270px; }
  .preview-meta p { max-width: 330px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 122px; grid-template-columns: auto minmax(0,1fr); padding-right: 58px; }
  .solution-card__icon { float: left; margin: 0 12px 0 0; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip article { padding: 12px 4px; }
  .trust-strip article + article { border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 560px) {
  .header-consultation span { display: none; }
  .header-consultation { width: 46px; padding: 0; }
  .header-consultation svg { margin: 0; }
  .brand__copy strong { font-size: 1.18rem; }
  .brand__copy small { letter-spacing: .25em; }
  .hero__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .button { min-height: 49px; padding: 0 14px; font-size: .84rem; }
  .micro-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .preview-workspace { border-radius: 19px; }
  .browser-bar { height: 40px; grid-template-columns: auto 1fr auto; padding: 0 10px; }
  .browser-address { margin: 0 8px; font-size: .65rem; }
  .browser-status { font-size: 0; }
  .browser-status i { margin: 0; }
  .preview-stage { min-height: 245px; height: 58vw; }
  .preview-footer { display: grid; grid-template-columns: 1fr auto; padding: 12px; gap: 8px; }
  .solution-icon { width: 40px; height: 40px; }
  .preview-meta { gap: 9px; }
  .preview-meta strong { font-size: .9rem; }
  .preview-meta p { display: none; }
  .preview-footer .button span { display: none; }
  .preview-footer .button { width: 43px; padding: 0; }
  .solution-card { grid-template-columns: auto 1fr; padding: 14px 56px 14px 14px; }
  .solution-card__order { display: none; }
  .solution-card__icon { width: 43px; height: 43px; margin: 0; }
  .solution-card h2 { font-size: 1.08rem; }
  .solution-card p { font-size: .72rem; }
  .trust-strip { margin-bottom: 18px; }
  .info-dialog { padding: 28px 20px 22px; }
}

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