:root {
  --navy: #071b34;
  --navy-deep: #041226;
  --navy-soft: #0b2748;
  --gold: #d4af37;
  --gold-light: #f3d36b;
  --white: #ffffff;
  --paper: #f5f6f8;
  --ink: #0d1b2f;
  --muted: #5f6b7a;
  --border: rgba(212, 175, 55, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--navy);
  color: var(--white);
}

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

button {
  font-family: inherit;
}

.site {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--navy);
}

.container {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 27, 52, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.brand-mark {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 5px;
}

.brand-name {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.brand-subtitle {
  color: rgba(243, 211, 107, 0.88);
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  min-width: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

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

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

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.lang {
  min-width: 38px;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  background: transparent;
  color: rgba(243, 211, 107, 0.7);
  font-size: 13px;
  cursor: pointer;
}

.lang.active {
  color: var(--navy-deep);
  border-color: var(--gold);
  background: var(--gold);
}

.hero {
  padding: 86px 0 100px;
  background:
    radial-gradient(circle at 85% 18%, rgba(212, 175, 55, 0.12), transparent 34%),
    linear-gradient(180deg, var(--navy) 0%, #06162c 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 72px;
  align-items: center;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 24px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-light);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--navy-deep);
}

.button-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-light);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.product-stack {
  width: min(100%, 380px);
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.product-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--paper);
  color: var(--ink);
}

.product-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold) !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card strong {
  display: block;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.1;
}

.product-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.mini-card {
  padding: 18px 10px;
  border-radius: 18px;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--gold-light);
  text-align: center;
  font-size: 17px;
  font-weight: 800;
}

.product-note {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.45;
}

.section {
  padding: 94px 0;
}

.services-section,
.audience-section {
  background: var(--paper);
  color: var(--ink);
}

.section-head {
  max-width: 780px;
  margin-bottom: 52px;
}

.section-head.compact {
  margin-bottom: 0;
}

.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-head p {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.section-head .section-label {
  margin: 0 0 14px;
  color: var(--gold) !important;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  min-height: 312px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid #dce1e8;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(7, 27, 52, 0.06);
}

.service-number {
  width: fit-content;
  margin-bottom: 28px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.service-card a {
  margin-top: auto;
  padding-top: 30px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.service-card a::after {
  content: " →";
  color: var(--gold);
}

.audience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 70px;
  align-items: start;
}

.benefits-list {
  display: grid;
  gap: 14px;
  padding: 34px;
  border-radius: 28px;
  background: var(--navy);
  color: var(--white);
}

.benefits-list div {
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

.process-section {
  background: var(--navy);
  color: var(--white);
}

.light-head h2 {
  color: var(--white);
}

.light-head p {
  color: rgba(255, 255, 255, 0.72);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.process-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.05);
}

.process-card span {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-card h3 {
  margin: 22px 0 14px;
  font-size: 25px;
  line-height: 1.15;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.55;
}

.footer {
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.64);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand .brand-mark {
  width: 48px;
  height: 48px;
  font-size: 18px;
}

.footer-brand .brand-name {
  font-size: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-note {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  color: var(--gold-light);
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 1050px) {
  .header-inner {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
  }

  .header-tools {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 14px;
  }

  .main-nav {
    gap: 20px;
    font-size: 15px;
  }

  .hero-layout,
  .audience-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-content {
    max-width: 840px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 17px;
  }

  .brand-name {
    font-size: 19px;
  }

  .brand-subtitle {
    font-size: 12px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding: 62px 0 76px;
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-lead {
    font-size: 20px;
  }

  .product-stack {
    padding: 18px;
  }

  .section {
    padding: 72px 0;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* SERVICE PAGE */

.service-hero {
  padding: 82px 0 92px;
}

.service-hero .hero-content {
  max-width: 840px;
}

.service-hero h1 {
  max-width: 860px;
}

.service-hero .hero-lead {
  max-width: 760px;
}

.service-section {
  padding: 88px 0;
}

.service-section.light {
  background: var(--paper);
  color: var(--ink);
}

.service-section.dark {
  background: var(--navy);
  color: var(--white);
}

.service-section .section-head {
  margin-bottom: 42px;
}

.service-section.dark .section-head h2,
.service-section.dark h2,
.service-section.dark h3 {
  color: var(--white);
}

.service-section.dark .section-head p,
.service-section.dark p,
.service-section.dark li {
  color: rgba(255, 255, 255, 0.76);
}

.service-text {
  max-width: 820px;
}

.service-text p {
  margin: 0 0 18px;
  color: inherit;
  font-size: 19px;
  line-height: 1.65;
}

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

.service-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  border: 1px solid #dce1e8;
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.service-section.dark .service-list li {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
}

.audit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.audit-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid #dce1e8;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(7, 27, 52, 0.06);
}

.service-section.dark .audit-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.audit-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audit-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
}

.audit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.service-section.dark .audit-card p {
  color: rgba(255, 255, 255, 0.72);
}

.boundary-note {
  margin-top: 36px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(212, 175, 55, 0.08);
}

.boundary-note p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
}

.boundary-note p + p {
  margin-top: 14px;
  color: var(--navy);
  font-weight: 700;
}

.price-box {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 22px;
  padding: 22px 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
}

.price-box strong {
  color: var(--gold-light);
  font-size: 44px;
  line-height: 1;
}

.price-box span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.order-form {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #dce1e8;
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
}

.order-form textarea {
  resize: vertical;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: 2px solid rgba(212, 175, 55, 0.35);
  border-color: var(--gold);
}

.form-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 1050px) {
  .audit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .service-hero {
    padding: 62px 0 76px;
  }

  .service-section {
    padding: 72px 0;
  }

  .audit-grid {
    grid-template-columns: 1fr;
  }

  .audit-card {
    min-height: auto;
  }

  .price-box {
    width: 100%;
    justify-content: center;
  }

  .price-box strong {
    font-size: 38px;
  }
}

/* AUDIT PREVIEWS */
.preview-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}
.preview-card{display:block;padding:22px;border:1px solid #dce1e8;border-radius:26px;background:#fff;box-shadow:0 12px 36px rgba(7,27,52,.06);cursor:zoom-in}
.preview-card img{display:block;width:100%;height:270px;object-fit:cover;object-position:top left;border-radius:18px;border:1px solid #dce1e8;background:#eef2f6}
.preview-card h3{margin:18px 0 8px;color:var(--ink);font-size:24px;line-height:1.2}
.preview-card p{margin:0;color:var(--muted);font-size:16px;line-height:1.55}
.preview-lightbox{position:fixed;inset:0;z-index:200;display:none;align-items:center;justify-content:center;padding:28px;background:rgba(4,18,38,.88)}
.preview-lightbox.active{display:flex}
.preview-lightbox img{max-width:min(96vw,1100px);max-height:90vh;border-radius:18px;background:var(--paper);box-shadow:0 28px 90px rgba(0,0,0,.42)}
.preview-lightbox button{position:absolute;top:22px;right:22px;width:44px;height:44px;border:1px solid rgba(212,175,55,.48);border-radius:50%;background:var(--gold);color:var(--navy-deep);font-size:24px;line-height:1;cursor:pointer}
.consent-row{display:flex;gap:12px;align-items:flex-start;padding:14px 0 4px;color:var(--muted);font-size:15px;line-height:1.5}
.consent-row input{width:auto;min-width:18px;height:18px;margin-top:2px;padding:0}
.consent-row a{color:var(--navy);font-weight:700;text-decoration:underline;text-underline-offset:3px}
@media(max-width:720px){.preview-grid{grid-template-columns:1fr}.preview-card{padding:16px}.preview-card img{height:230px}.preview-lightbox{padding:16px}.preview-lightbox button{top:14px;right:14px}}


/* SERVICE 3 SAFE SALES TABLE */
.sales-safety-note {
  border-left-color: var(--gold);
}

.sales-start-button {
  width: fit-content;
}

.sales-table-card {
  padding: 20px;
  border: 1px solid #dce1e8;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(7, 27, 52, 0.08);
}

.sales-table-scroll {
  overflow-x: auto;
}

.sales-clean-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: separate;
  border-spacing: 0;
}

.sales-clean-table th,
.sales-clean-table td {
  padding: 10px;
  border-bottom: 1px solid #e4e8ee;
  vertical-align: top;
}

.sales-clean-table th {
  background: var(--navy);
  color: #ffffff;
  font-size: 14px;
  line-height: 1.25;
  text-align: left;
}

.sales-clean-table th:first-child {
  border-top-left-radius: 14px;
}

.sales-clean-table th:last-child {
  border-top-right-radius: 14px;
}

.sales-clean-table th small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 400;
}

.sales-clean-table input {
  min-width: 130px;
  padding: 11px 12px;
  border-radius: 12px;
  font-size: 14px;
}

.sales-row-remove {
  width: 34px;
  height: 34px;
  border: 1px solid #dce1e8;
  border-radius: 50%;
  background: #ffffff;
  color: var(--navy);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.sales-table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.sales-validation-message {
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.45;
}

.sales-validation-message.error {
  border: 1px solid #f0b8b8;
  background: #fff1f1;
  color: #8a1f1f;
}

.sales-validation-message.success {
  border: 1px solid #b8dfc0;
  background: #effaf1;
  color: #1f6b31;
}

.sales-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 18, 38, 0.84);
}

.sales-modal {
  position: relative;
  width: min(620px, 100%);
  padding: 34px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.sales-modal h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.18;
}

.sales-modal p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.sales-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid #dce1e8;
  border-radius: 50%;
  background: #ffffff;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 720px) {
  .sales-start-button {
    width: 100%;
  }

  .sales-table-card {
    padding: 14px;
  }

  .sales-modal {
    padding: 28px 22px;
  }

  .sales-modal h3 {
    font-size: 25px;
  }
}
