:root {
  --navy: #1B2A4A;
  --amber: #D4860A;
  --anth: #2D3748;
  --gray: #F4F6F9;
  --white: #FFFFFF;
  --line: rgba(27, 42, 74, .12);
  --radius: 12px;
  --shadow: 0 10px 30px rgba(27, 42, 74, .08);
  --header: 84px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, sans-serif;
  font-weight: 400;
  color: var(--anth);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, .btn, .eyebrow {
  font-family: Montserrat, Inter, sans-serif;
}
h1, h2, h3 { color: var(--navy); line-height: 1.15; margin: 0 0 .6em; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 800; letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: absolute; left: 12px; top: -40px; background: var(--amber); color: #fff;
  padding: 8px 12px; z-index: 1000;
}
.skip-link:focus { top: 12px; }
.eyebrow {
  color: var(--amber);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: .7rem;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: 0 22px; border-radius: 10px; border: 1px solid transparent;
  font-weight: 600; text-decoration: none; cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-amber { background: var(--amber); color: #fff; }
.btn-amber:hover { background: #c07709; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { border-color: #fff; }
.btn-sm { min-height: 40px; padding: 0 14px; font-size: .9rem; }
.icon { width: 22px; height: 22px; display: inline-block; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(27, 42, 74, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212, 134, 10, .28);
}
.header-inner { display: flex; align-items: center; gap: 28px; min-height: var(--header); }
.logo {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 6px 10px;
  flex-shrink: 0;
}
.logo img { width: 196px; height: auto; display: block; }
.nav { display: flex; gap: 22px; margin-inline: auto; }
.nav a { color: #fff; text-decoration: none; font-size: .95rem; font-weight: 500; position: relative; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--amber); transition: width .2s;
}
.nav a:hover::after, .nav a:focus-visible::after { width: 100%; }
.header-cta { margin-left: auto; }
.menu-toggle { display: none; background: none; border: 0; color: #fff; }
.hero { position: relative; min-height: min(92vh, 860px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { background: linear-gradient(90deg, rgba(27,42,74,.88) 0%, rgba(27,42,74,.55) 58%, rgba(27,42,74,.28) 100%); }
.hero-frame {
  position: absolute; inset: 28px; border: 1px solid rgba(212,134,10,.35); pointer-events: none;
}
.hero-frame::after {
  content: ""; position: absolute; inset: 10px; border: 1px solid rgba(255,255,255,.12);
}
.hero-content { position: relative; z-index: 2; padding: 0 0 92px; max-width: 760px; margin-left: max(20px, calc((100% - var(--max)) / 2)); width: auto; }
.hero h1 { color: #fff; white-space: pre-line; }
.hero-lead { font-size: 1.12rem; max-width: 540px; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.trust { background: var(--navy); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 28px 22px; border-right: 1px solid rgba(255,255,255,.08); }
.trust-item:last-child { border-right: 0; }
.trust-item .icon { color: var(--amber); width: 26px; height: 26px; }
.trust-item h2 { color: #fff; font-size: 1rem; margin: 12px 0 6px; }
.trust-item p { margin: 0; color: rgba(255,255,255,.72); font-size: .92rem; }
.section { padding: 96px 0; }
.section-alt { background: var(--gray); }
.section-navy { background: var(--navy); color: #fff; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head.left, .section-head.light { text-align: left; margin-left: 0; }
.section-head.light h2 { color: #fff; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(27,42,74,.12); }
.card-media { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 22px; }
.card-icon { color: var(--amber); margin-bottom: 10px; }
.chip {
  position: absolute; left: 12px; top: 12px; background: var(--navy); color: #fff;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: 5px 8px; border-radius: 6px;
}
.chip-demo { left: auto; right: 12px; background: var(--amber); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.frame-photo { position: relative; }
.frame-photo::before, .frame-photo::after {
  content: ""; position: absolute; width: 72px; height: 72px; border: 1px solid var(--amber); z-index: 1; pointer-events: none;
}
.frame-photo::before { top: -10px; left: -10px; border-right: 0; border-bottom: 0; }
.frame-photo::after { right: -10px; bottom: -10px; border-left: 0; border-top: 0; }
.split-media.frame-photo { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 10px; }
.frame-photo img { border-radius: 10px; width: 100%; height: 100%; object-fit: cover; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-family: Montserrat, sans-serif; font-weight: 600; text-decoration: none; }
.text-link .icon { color: var(--amber); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.why-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.why-item .icon { color: var(--amber); }
.process { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 0; margin: 0; }
.process-no { display: block; color: var(--amber); font-family: Montserrat, sans-serif; font-size: 2rem; font-weight: 800; }
.process h3 { color: #fff; }
.process p { color: rgba(255,255,255,.74); margin: 0; }
.center-cta { text-align: center; margin-top: 36px; }
.gallery-card a, .lightbox-trigger {
  display: block; width: 100%; background: none; border: 0; padding: 0; text-align: left; color: inherit; cursor: pointer;
}
.gallery-card-photo .card-media { aspect-ratio: 4 / 5; }
.gallery-card-photo { box-shadow: none; }
.lightbox figcaption:empty { display: none; }
.ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ref-card { background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); }
.stars { color: var(--amber); display: flex; gap: 4px; }
.stars .icon { width: 16px; height: 16px; }
.ref-name { font-family: Montserrat, sans-serif; font-weight: 600; color: var(--navy); margin: 0; }
.demo-note { font-size: .8rem; color: #7a8494; margin: 6px 0 0; }
.cta-band { background: var(--navy); color: #fff; padding: 88px 0; text-align: center; position: relative; }
.cta-band::before {
  content: ""; position: absolute; inset: 24px; border: 1px solid rgba(212,134,10,.35); pointer-events: none;
}
.cta-band h2 { color: #fff; max-width: 720px; margin-inline: auto; }
.cta-band .container { position: relative; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; }
.contact-list { list-style: none; padding: 0; margin: 0 0 24px; }
.contact-list li { display: flex; gap: 12px; margin-bottom: 16px; }
.contact-list .icon { color: var(--amber); margin-top: 4px; }
.contact-list a { color: var(--navy); }
.map-wrap { border-radius: var(--radius); overflow: hidden; min-height: 220px; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 240px; border: 0; }
.form-card { background: var(--gray); padding: 28px; border-radius: var(--radius); }
.contact-form { display: grid; gap: 12px; }
.contact-form label, .contact-form input, .contact-form select, .contact-form textarea {
  display: block; width: 100%;
}
.contact-form label { font-size: .88rem; font-weight: 600; color: var(--navy); }
.contact-form input, .contact-form select, .contact-form textarea {
  margin-top: 6px; border: 1px solid #d6dce6; border-radius: 8px; padding: 12px 14px; font: inherit; background: #fff;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--navy); outline-offset: 1px;
}
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.alert { padding: 12px 14px; border-radius: 8px; }
.alert.ok { background: #e8f6ee; color: #1b5c38; }
.alert.err { background: #fdeaea; color: #8a1f1f; }
.site-footer { background: var(--navy); color: rgba(255,255,255,.8); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .9fr 1fr; gap: 28px; padding-bottom: 40px; }
.footer-logo {
  width: 210px;
  margin-bottom: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
}
.footer-tag { color: var(--amber); font-family: Montserrat, sans-serif; font-weight: 600; }
.site-footer h2 { color: #fff; font-size: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,.8); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 12px; }
.socials a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; border-radius: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0; font-size: .88rem; }
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 30;
  background: #128C7E; color: #fff; display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-radius: 999px; text-decoration: none; box-shadow: var(--shadow);
}
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 35;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; display: flex; gap: 16px; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow);
}
.cookie-bar[hidden] { display: none; }
.page-hero { background: var(--navy); color: #fff; padding: 72px 0 56px; }
.page-hero h1 { color: #fff; }
.lead { font-size: 1.1rem; max-width: 640px; }
.filters { display: flex; gap: 10px; justify-content: center; margin-bottom: 32px; }
.filter {
  text-decoration: none; border: 1px solid var(--line); padding: 10px 16px; border-radius: 999px;
  font-family: Montserrat, sans-serif; font-weight: 600; color: var(--navy);
}
.filter.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.lightbox {
  position: fixed; inset: 0; background: rgba(27,42,74,.92); z-index: 80;
  display: grid; place-items: center; padding: 48px 16px;
}
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: min(1100px, 92vw); }
.lightbox img { max-height: 78vh; width: auto; margin: auto; }
.lightbox figcaption { color: #fff; margin-top: 12px; text-align: center; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: transparent; border: 0; color: #fff; width: 48px; height: 48px;
}
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 10px; top: 50%; }
.lb-next { right: 10px; top: 50%; }
.legal { max-width: 760px; }
.error-page { min-height: 100vh; display: grid; place-items: center; background: var(--navy); color: #fff; }
.error-box { width: min(560px, calc(100% - 40px)); }
.error-box h1 { color: #fff; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
@media (max-width: 1024px) {
  .card-grid, .why-grid, .process, .ref-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-bottom: 1px solid rgba(255,255,255,.08); }
  .split, .contact-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--navy); flex-direction: column; padding: 16px 20px 24px; gap: 14px;
  }
  .nav.is-open { display: flex; }
  .menu-toggle { display: grid; place-items: center; }
  .header-cta { display: inline-flex; min-height: 40px; padding: 0 12px; font-size: .82rem; margin-left: auto; }
  .hero-content { margin-left: 20px; padding-bottom: 64px; width: calc(100% - 40px); }
}
@media (max-width: 700px) {
  .card-grid, .why-grid, .process, .ref-grid, .split, .contact-grid, .footer-grid, .trust-grid { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .section { padding: 64px 0; }
  .wa-float span { display: none; }
  .cookie-bar { flex-direction: column; align-items: stretch; }
  .hero { min-height: 86vh; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
.reveal { opacity: 0; transform: translateY(16px); animation: fadeup .55s ease forwards; }
@keyframes fadeup { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; animation: none; }
}
