:root {
  --bg: #fbfcff;
  --surface: #ffffff;
  --surface-soft: #f3f6fa;
  --ink: #07122a;
  --muted: #536074;
  --line: #dde5ee;
  --gold: #f5a400;
  --gold-2: #ffc244;
  --danger: #ef4438;
  --shadow: 0 20px 55px rgba(7, 18, 42, 0.09);
}

:root[data-theme="dark"] {
  --bg: #020b13;
  --surface: #061522;
  --surface-soft: #0a1d2b;
  --ink: #ffffff;
  --muted: #c1cad6;
  --line: rgba(245, 164, 0, 0.36);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 4%, rgba(245, 164, 0, 0.1), transparent 30rem),
    linear-gradient(180deg, var(--bg), var(--bg));
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

img {
  display: block;
  max-width: 100%;
}

.section-pad,
.site-header,
.cta {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 0 18px;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 151px;
  height: 67px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 31px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 14px 0;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 3px;
  background: var(--gold);
  content: "";
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--gold);
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--gold) 34%, var(--line));
  border-radius: 14px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 96%, var(--gold)), var(--surface));
  color: var(--ink);
  box-shadow: 0 14px 26px rgba(7, 18, 42, 0.08);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.menu-toggle:hover,
.site-header.menu-open .menu-toggle,
.request-header.menu-open .menu-toggle {
  border-color: var(--gold);
  color: #06101f;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 34px rgba(245, 164, 0, 0.3);
  transform: translateY(-1px);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

:root[data-theme="dark"] .menu-toggle {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 88%, #ffffff 4%), var(--surface-soft));
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

body.nav-open {
  overflow: hidden;
}

.site-header.menu-open .menu-toggle span:nth-child(1),
.request-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2),
.request-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3),
.request-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.theme-toggle .moon,
:root[data-theme="dark"] .theme-toggle .sun {
  display: none;
}

:root[data-theme="dark"] .theme-toggle .moon {
  display: inline;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 7px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #06101f;
  box-shadow: 0 12px 24px rgba(245, 164, 0, 0.25);
}

.btn-outline {
  border-color: color-mix(in srgb, var(--gold) 65%, var(--line));
  background: var(--ink);
  color: var(--surface);
}

:root[data-theme="dark"] .btn-outline {
  background: transparent;
  color: var(--ink);
}

.btn-ghost {
  border-color: var(--gold);
  background: transparent;
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(420px, 1.12fr);
  min-height: 530px;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--ink);
}

.eyebrow span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 9px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
}

.hero h1 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(52px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 strong {
  display: block;
  color: var(--gold);
}

.lead {
  max-width: 510px;
  margin: 28px 0;
  color: var(--ink);
  font-size: 19px;
}

.hero-buttons,
.social-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.social-proof {
  margin-top: 32px;
}

.avatars {
  display: flex;
}

.avatars span {
  width: 36px;
  height: 36px;
  margin-left: -9px;
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: linear-gradient(140deg, #22354c, #e2a75d 50%, #f6e8d1);
}

.avatars span:first-child {
  margin-left: 0;
}

.social-proof strong {
  display: block;
  color: var(--gold);
}

.social-proof small {
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 510px;
  border-radius: 50%;
  background: url("../assets/light-hero.webp") center / contain no-repeat;
}

:root[data-theme="dark"] .hero-visual {
  background-image: url("../assets/dark-hero.webp");
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  inset: 42px 24px 58px 42px;
}

.hero-visual::after {
  right: 4px;
  bottom: 130px;
  width: 82px;
  height: 82px;
  background: color-mix(in srgb, var(--surface) 70%, transparent);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  box-shadow: var(--shadow);
}

.stats article {
  display: flex;
  gap: 22px;
  align-items: center;
  min-height: 132px;
  padding: 28px 40px;
  border-right: 1px solid var(--line);
}

.stats article:last-child {
  border-right: 0;
}

.round-icon,
.mini-icon,
.feature-list span {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
}

.stats strong {
  display: block;
  font-size: 30px;
  line-height: 1.08;
}

.stats b {
  display: block;
  margin-bottom: 7px;
}

.stats small,
.service-card p,
.feature-list p,
.testimonial-row p,
.footer p,
.footer a {
  color: var(--muted);
}

.services {
  padding-top: 74px;
  text-align: center;
}

h2 {
  margin: 0 0 28px;
  font-size: clamp(29px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: left;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(7, 18, 42, 0.05);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.58;
  object-fit: cover;
}

.service-card div {
  position: relative;
  padding: 42px 20px 24px;
}

.service-card .mini-icon {
  position: absolute;
  top: -31px;
  left: 19px;
  width: 58px;
  height: 58px;
  background: var(--surface);
}

.service-card h3,
.feature-list h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.service-card a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 900;
}

.risk-band {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 0.55fr 1.2fr 1fr;
  align-items: center;
  margin-top: 32px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--surface-soft) 90%, transparent), var(--surface));
  min-height: 225px;
}

:root[data-theme="dark"] .risk-band {
  background: linear-gradient(90deg, #06111b, #0a1926 44%, #050c13);
}

.risk-image,
.phone-image,
.devices-image,
.control-room,
.cta-camera {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.risk-image {
  align-self: stretch;
  background-image: url("../assets/light-risk.webp");
}

.phone-image {
  height: 185px;
  background-image: url("../assets/light-solution-phone.webp");
  background-size: contain;
}

:root[data-theme="dark"] .risk-image {
  background-image: url("../assets/dark-risk.webp");
}

:root[data-theme="dark"] .phone-image {
  background-image: url("../assets/dark-solution-phone.webp");
}

.risk-list,
.solution-list {
  padding: 28px 20px;
}

.risk-band h3 {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
}

.risk-band p {
  margin: 12px 0;
  font-weight: 700;
}

.bad,
.good {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
}

.bad {
  background: var(--danger);
}

.good {
  background: var(--gold);
  color: #06101f;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 48px;
  justify-self: center;
}

.control {
  padding-top: 36px;
  text-align: center;
}

.control-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) 360px;
  gap: 60px;
  align-items: center;
}

.devices-image {
  min-height: 250px;
  background-image: url("../assets/light-devices.webp");
  background-size: contain;
}

:root[data-theme="dark"] .devices-image {
  background-image: url("../assets/dark-devices.webp");
}

.feature-list {
  display: grid;
  gap: 28px;
  text-align: left;
}

.feature-list article {
  display: flex;
  gap: 18px;
}

.feature-list span {
  width: 54px;
  height: 54px;
}

.feature-list p {
  margin: 0;
}

.trust {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 0.9fr);
  gap: 36px;
  align-items: center;
  padding-top: 34px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(92px, 1fr));
  gap: 24px;
}

.sector-grid article {
  display: grid;
  place-items: center;
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-weight: 800;
  color: var(--ink);
}

.sector-grid span {
  color: var(--gold);
  font-size: 34px;
}

.control-room {
  min-height: 230px;
  border-radius: 2px;
  background-image: url("../assets/light-control-room.webp");
}

:root[data-theme="dark"] .control-room {
  background-image: url("../assets/dark-control-room.webp");
}

.testimonials {
  padding-top: 60px;
  text-align: center;
}

.testimonial-row {
  display: grid;
  grid-template-columns: 44px repeat(3, 1fr) 44px;
  gap: 24px;
  align-items: center;
}

.testimonial-row article {
  min-height: 194px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  text-align: left;
}

.quote {
  color: var(--gold);
  font-size: 24px;
  font-weight: 900;
}

.testimonial-row b,
.testimonial-row small {
  display: block;
}

.testimonial-row small {
  color: var(--muted);
}

.round-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
  cursor: pointer;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.dots span:first-child {
  background: var(--gold);
}

.cta {
  display: grid;
  grid-template-columns: 82px 1fr 270px auto 128px;
  gap: 28px;
  align-items: center;
  margin-top: 42px;
  padding: 22px 32px;
  border: 1px solid color-mix(in srgb, var(--gold) 50%, var(--line));
  border-radius: 12px;
  background: linear-gradient(95deg, #07142a, #061121);
  color: #fff;
  overflow: hidden;
}

.cta-logo {
  width: 72px;
  height: 72px;
  background: url("../assets/dark-logo.webp") left center / 150px auto no-repeat;
}

.cta h2 {
  margin: 0;
  font-size: clamp(25px, 2.7vw, 37px);
}

.cta h2 strong {
  display: block;
  color: var(--gold);
}

.cta p {
  color: #d9e0ec;
}

.cta-camera {
  width: 128px;
  height: 88px;
  background-image: url("../assets/dark-cta-camera.webp");
  background-size: contain;
}

.footer {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 1fr 1fr;
  gap: 56px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer img {
  width: 160px;
}

.footer h3 {
  margin: 10px 0 14px;
  font-size: 13px;
  text-transform: uppercase;
}

.footer a,
.footer p {
  display: block;
  margin: 4px 0;
}

.socials {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

.socials span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--ink);
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
  color: var(--muted);
  text-align: center;
}

.footer-request-link {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 10px;
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--gold) 38%, var(--line));
  border-radius: 16px;
  background:
    radial-gradient(circle at 9% 12%, color-mix(in srgb, var(--gold) 22%, transparent), transparent 11rem),
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 96%, var(--gold)), var(--surface));
  box-shadow: 0 18px 45px rgba(7, 18, 42, 0.08);
}

.footer-request-link::after {
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 160px;
  height: 160px;
  border: 1px solid color-mix(in srgb, var(--gold) 42%, transparent);
  border-radius: 50%;
  content: "";
}

.footer-request-link > * {
  position: relative;
  z-index: 1;
}

.footer-request-link h3,
.footer-request-link p {
  margin: 0;
}

.footer-request-link h3 {
  font-size: 17px;
  color: var(--ink);
}

.footer-request-link .btn {
  min-width: 190px;
  border-color: color-mix(in srgb, var(--gold-2) 70%, #ffffff);
  box-shadow: 0 16px 34px rgba(245, 164, 0, 0.34);
}

:root[data-theme="dark"] .footer-request-link {
  border-color: color-mix(in srgb, var(--gold) 72%, transparent);
  background:
    radial-gradient(circle at 8% 12%, rgba(245, 164, 0, 0.22), transparent 12rem),
    linear-gradient(135deg, #071a2b, #020912 72%);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
}

:root[data-theme="dark"] .footer-request-link h3 {
  color: #ffffff;
}

:root[data-theme="dark"] .footer-request-link p {
  color: #dce6f2;
}

:root[data-theme="dark"] .footer-request-link .btn-primary {
  background: linear-gradient(180deg, #ffd778, #f5a400);
  color: #03101d;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 18px 42px rgba(245, 164, 0, 0.46);
}

.contact-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: end;
  margin-top: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.contact-form h3,
.form-success,
.form-error {
  grid-column: 1 / -1;
  margin: 0;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 10px 12px;
}

.contact-form textarea {
  min-height: 96px;
  resize: vertical;
}

.contact-form label:has(textarea),
.contact-form button {
  grid-column: 1 / -1;
}

.form-success {
  color: #16a34a;
  font-weight: 800;
}

.form-error {
  color: var(--danger);
  font-weight: 800;
}

.form-error ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.admin-page {
  padding-top: 44px;
  padding-bottom: 60px;
}

.admin-page h1 {
  margin: 0 0 26px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

.admin-heading {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.admin-heading h1 {
  margin-bottom: 8px;
}

.admin-heading p,
.muted-line {
  color: var(--muted);
}

.admin-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-filters a,
.small-action {
  display: inline-grid;
  min-height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  padding: 0 14px;
  cursor: pointer;
}

.admin-filters a.active,
.small-action:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.requests-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.requests-table table {
  width: 100%;
  min-width: 1060px;
  border-collapse: collapse;
}

.requests-table th,
.requests-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.requests-table th {
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
}

.requests-table td {
  color: var(--muted);
}

.requests-table td span {
  display: block;
}

.requests-table td strong {
  color: var(--ink);
}

.table-actions,
.danger-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.table-actions form,
.danger-actions form {
  margin: 0;
}

.status-pill {
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--gold) 18%, transparent);
  color: var(--gold);
  font-weight: 900;
}

.status-form select {
  min-width: 120px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--gold) 12%, var(--surface));
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  padding: 8px 12px;
}

.pagination-wrap {
  margin-top: 22px;
}

.request-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.detail-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 24px;
}

.detail-panel h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

.request-edit-panel {
  grid-column: 1 / -1;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.detail-list dt {
  color: var(--muted);
  font-weight: 800;
}

.detail-list dd {
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.message-box {
  margin: 0 0 22px;
  color: var(--ink);
  white-space: pre-wrap;
}

.admin-edit-form {
  display: grid;
  gap: 14px;
}

.admin-edit-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.admin-edit-form select,
.admin-edit-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.admin-edit-form textarea {
  min-height: 150px;
  resize: vertical;
}

.danger-actions {
  margin-top: 18px;
}

.danger-button {
  border-color: var(--danger);
  background: transparent;
  color: var(--danger);
}

.inline-back {
  display: inline-block;
  margin-bottom: 18px;
}

.admin-user {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.auth-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
}

.auth-card {
  width: min(100%, 470px);
  display: grid;
  gap: 16px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.auth-card img {
  width: 170px;
}

.auth-card h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
}

.auth-card label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.auth-card input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.remember-row {
  grid-template-columns: 18px 1fr;
  align-items: center;
}

.remember-row input {
  width: 18px;
  min-height: 18px;
}

.back-link {
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.request-page-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 8%, color-mix(in srgb, var(--gold) 14%, transparent), transparent 28rem),
    linear-gradient(145deg, var(--bg), color-mix(in srgb, var(--surface-soft) 52%, var(--bg)));
}

.request-header {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 26px 0;
}

.request-header .brand img {
  width: 150px;
}

.request-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.request-nav a:hover {
  color: var(--gold);
}

.request-shell {
  width: min(100% - 48px, 1180px);
  margin: 22px auto 70px;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 48px;
  align-items: start;
}

.request-intro {
  position: sticky;
  top: 96px;
  padding-top: 24px;
}

.request-intro h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.request-intro > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.request-highlights {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.request-highlights article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 6px 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.request-highlights span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
}

.request-highlights strong {
  color: var(--ink);
}

.request-highlights small {
  color: var(--muted);
}

.request-form-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 42px);
}

.premium-alert {
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: color-mix(in srgb, var(--gold) 9%, var(--surface));
}

.premium-alert p,
.premium-alert ul {
  margin: 7px 0 0;
}

.premium-request-form {
  display: grid;
  gap: 30px;
}

.form-section {
  display: grid;
  gap: 14px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.form-section:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.form-section > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.premium-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.premium-request-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.premium-request-form input,
.premium-request-form select,
.premium-request-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: color-mix(in srgb, var(--bg) 72%, var(--surface));
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

.premium-request-form input:focus,
.premium-request-form select:focus,
.premium-request-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 15%, transparent);
}

.wide-field {
  grid-column: 1 / -1;
}

.premium-request-form textarea {
  min-height: 145px;
  resize: vertical;
}

.premium-submit {
  width: 100%;
  min-height: 58px;
}

.request-privacy {
  margin: -12px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.service-page-body {
  background:
    radial-gradient(circle at 80% 4%, color-mix(in srgb, var(--gold) 13%, transparent), transparent 28rem),
    linear-gradient(180deg, var(--bg), color-mix(in srgb, var(--surface-soft) 45%, var(--bg)));
}

.service-hero-detail,
.service-detail-content,
.service-final-cta {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.service-hero-detail {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 52px;
  align-items: center;
  padding: 42px 0 56px;
}

.service-hero-detail h1 {
  margin: 0 0 22px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.service-hero-detail p {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

.service-detail-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.service-detail-visual {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-detail-visual img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 34px;
}

.service-copy-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 28px;
  box-shadow: 0 10px 34px rgba(7, 18, 42, 0.05);
}

.service-copy-panel h2 {
  margin-bottom: 18px;
  font-size: 26px;
}

.service-copy-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.service-benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-benefit-grid div {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
}

.service-benefit-grid span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: #07122a;
}

.service-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
}

.service-steps span {
  color: var(--gold);
  font-weight: 900;
}

.related-services {
  display: grid;
  gap: 12px;
}

.related-services a {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.related-services a:hover {
  border-color: var(--gold);
}

.related-services small {
  color: var(--muted);
}

.service-final-cta {
  margin-bottom: 70px;
  padding: 34px;
  border: 1px solid color-mix(in srgb, var(--gold) 48%, var(--line));
  border-radius: 16px;
  background: linear-gradient(95deg, #07142a, #061121);
  color: #fff;
  text-align: center;
}

.service-final-cta h2 {
  margin-bottom: 12px;
}

.service-final-cta p {
  margin: 0 0 24px;
  color: #d9e0ec;
}

.service-final-cta a:not(.btn) {
  color: var(--gold);
  font-weight: 800;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #020b13;
    --surface: #061522;
    --surface-soft: #0a1d2b;
    --ink: #ffffff;
    --muted: #c1cad6;
    --line: rgba(245, 164, 0, 0.36);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  }
}

@media (max-width: 1080px) {
  body.nav-open::before {
    position: fixed;
    inset: 0;
    z-index: 8;
    background: color-mix(in srgb, var(--bg) 60%, transparent);
    backdrop-filter: blur(6px);
    content: "";
  }

  .site-header,
  .request-header {
    z-index: 12;
  }

  .site-header {
    grid-template-columns: 160px 44px 1fr;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    display: none;
    overflow: visible;
    justify-content: stretch;
    gap: 9px;
    padding: 14px;
    position: relative;
    isolation: isolate;
    border: 1px solid color-mix(in srgb, var(--gold) 32%, var(--line));
    border-radius: 18px;
    background:
      radial-gradient(circle at 10% 10%, color-mix(in srgb, var(--gold) 14%, transparent), transparent 12rem),
      color-mix(in srgb, var(--surface) 97%, transparent);
    box-shadow: 0 20px 56px rgba(7, 18, 42, 0.14);
    animation: menuDrop 0.2s ease both;
  }

  .site-header.menu-open .main-nav,
  .request-header.menu-open .request-nav {
    display: grid;
  }

  .main-nav a,
  .request-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 9px;
    padding: 0 14px;
    position: relative;
    overflow: hidden;
    color: var(--ink);
    font-weight: 900;
    background: color-mix(in srgb, var(--surface-soft) 54%, transparent);
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
  }

  .main-nav a::before,
  .request-nav a::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    content: "";
    opacity: 0.55;
  }

  .main-nav a::after,
  .request-nav a::after {
    position: static;
    inset: auto;
    width: auto;
    height: auto;
    background: transparent;
    color: var(--gold);
    content: ">";
    font-weight: 900;
  }

  .main-nav a.active::after,
  .main-nav a:hover::after {
    content: ">";
  }

  .main-nav a.active,
  .main-nav a:hover,
  .request-nav a:hover {
    background: color-mix(in srgb, var(--gold) 16%, var(--surface));
    color: var(--gold);
    transform: translateX(3px);
  }

  .header-actions {
    justify-self: end;
  }

  .hero,
  .control-layout,
  .trust {
    grid-template-columns: 1fr;
  }

  .stats,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats article:nth-child(2) {
    border-right: 0;
  }

  .risk-band {
    grid-template-columns: 1fr 1fr;
  }

  .risk-image,
  .phone-image,
  .brand-mark {
    display: none;
  }

  .testimonial-row {
    grid-template-columns: 1fr;
  }

  .round-arrow {
    display: none;
  }

  .cta,
  .footer,
  .contact-form {
    grid-template-columns: 1fr 1fr;
  }

  .request-header,
  .request-shell,
  .service-hero-detail,
  .service-detail-content {
    grid-template-columns: 1fr;
  }

  .request-header {
    grid-template-columns: 180px 44px auto;
  }

  .request-nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: stretch;
    gap: 9px;
    padding: 14px;
    border: 1px solid color-mix(in srgb, var(--gold) 32%, var(--line));
    border-radius: 18px;
    background:
      radial-gradient(circle at 10% 10%, color-mix(in srgb, var(--gold) 14%, transparent), transparent 12rem),
      color-mix(in srgb, var(--surface) 97%, transparent);
    box-shadow: 0 20px 56px rgba(7, 18, 42, 0.14);
    animation: menuDrop 0.2s ease both;
  }

  .request-intro {
    position: static;
  }

  .cta-camera {
    display: none;
  }
}

@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 700px) {
  .section-pad,
  .site-header,
  .cta {
    width: min(100% - 28px, 1240px);
  }

  .site-header {
    grid-template-columns: 1fr 44px;
    gap: 12px;
    padding: 14px 0 10px;
  }

  .site-header .brand img,
  .request-header .brand img {
    width: 132px;
    height: auto;
  }

  .site-header .menu-toggle {
    justify-self: end;
  }

  .header-actions {
    order: 4;
    grid-column: 1 / -1;
    justify-self: stretch;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px;
  }

  .header-actions .btn {
    flex: 1;
  }

  .header-actions form,
  .admin-user {
    grid-column: 1 / -1;
  }

  .header-actions form {
    display: flex;
  }

  .header-actions form .btn {
    width: 100%;
  }

  .admin-user {
    white-space: normal;
  }

  .main-nav {
    order: 3;
    gap: 6px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 10px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .stats,
  .service-grid,
  .risk-band,
  .sector-grid,
  .cta,
  .footer,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .stats article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px;
  }

  .stats article:last-child {
    border-bottom: 0;
  }

  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta {
    gap: 16px;
  }

  .request-header,
  .request-shell,
  .service-hero-detail,
  .service-detail-content,
  .service-final-cta {
    width: min(100% - 28px, 1180px);
  }

  .request-header {
    grid-template-columns: 1fr 44px 44px;
    gap: 16px;
    width: min(100% - 28px, 1180px);
    padding: 14px 0 10px;
  }

  .request-nav,
  .footer-request-link {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-request-link {
    align-items: stretch;
    text-align: left;
    padding: 22px;
  }

  .footer-request-link .btn {
    width: 100%;
  }

  .request-nav {
    align-items: stretch;
  }

  .premium-form-grid {
    grid-template-columns: 1fr;
  }

  .request-intro h1 {
    font-size: 44px;
  }

  .service-benefit-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-detail h1 {
    font-size: 46px;
  }
}
