:root {
  --navy: #101c35;
  --navy-2: #182844;
  --ink: #152033;
  --muted: #647184;
  --paper: #f5f3ee;
  --white: #ffffff;
  --accent: #b78c4b;
  --line: rgba(16, 28, 53, 0.16);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}
a { color: inherit; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.masthead { background: var(--navy); color: var(--white); }
.brandline { min-height: 76px; display: flex; align-items: center; gap: 18px; }
.brand { color: var(--white); font-weight: 800; letter-spacing: .15em; text-decoration: none; font-size: 22px; }
.brand-rule { width: 44px; height: 2px; background: var(--accent); }
.brand-note { font-size: 12px; letter-spacing: .12em; opacity: .72; }

.hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; padding: 76px 0 70px; }
.hero-copy { max-width: 650px; }
.eyebrow { margin: 0 0 14px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
h1, h2, h3 { color: var(--navy); margin-top: 0; }
h1 { font-size: clamp(42px, 5vw, 72px); line-height: 1.02; letter-spacing: -.035em; margin-bottom: 28px; }
h2 { font-size: clamp(30px, 3.4vw, 48px); line-height: 1.08; letter-spacing: -.025em; margin-bottom: 20px; }
h3 { font-size: 19px; margin-bottom: 8px; }
p { margin: 0 0 16px; }
.lead { font-size: clamp(20px, 2.3vw, 27px); line-height: 1.4; }
.hero-actions { margin-top: 30px; }

.photo { margin: 0; overflow: hidden; background: #d8dce2; }
.photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-photo { aspect-ratio: 4 / 3; box-shadow: 0 24px 55px rgba(16, 28, 53, .16); }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 0 28px; border-radius: 3px; font-weight: 800; text-decoration: none; letter-spacing: .015em; transition: transform .15s ease, background .15s ease; }
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--navy); color: var(--white); }
.button.primary:hover { background: var(--navy-2); }
.button.large { min-width: 220px; min-height: 58px; }

.skills-section { background: var(--paper); padding: 72px 0; }
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items: center; }
.section-copy { max-width: 520px; }
.image-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.image-pair .photo { aspect-ratio: 4 / 3; }

.rollout { padding: 76px 0; }
.rollout > h2 { max-width: 760px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); margin-top: 36px; }
.step { padding: 28px 24px 10px 0; }
.step + .step { padding-left: 24px; border-left: 1px solid var(--line); }
.step span { display: block; color: var(--accent); font-weight: 800; font-size: 12px; letter-spacing: .1em; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 15px; }

.install-section { background: var(--navy); color: var(--white); padding: 60px 0; }
.install-layout { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.install-section h2 { color: var(--white); margin-bottom: 10px; }
.install-section p:not(.eyebrow) { color: rgba(255,255,255,.76); margin-bottom: 0; }
.install-section .button.primary { background: var(--white); color: var(--navy); }
.install-section .button.primary:hover { background: #eceff4; }

.pricing-section {
  background: var(--navy);
  color: var(--white);
  padding: 18px 0 68px;
}
.pricing-layout {
  max-width: 840px;
  padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.pricing-section h2 {
  max-width: 680px;
  color: var(--white);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 28px 0 0;
}
.pricing-grid.single-card {
  grid-template-columns: minmax(0, 1fr);
  max-width: 560px;
}
.pricing-card {
  min-height: 196px;
  padding: 30px 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  text-align: left;
}
.price {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}
.price-title {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}
.price-note {
  color: rgba(255,255,255,.58);
  font-size: 14px;
}
.price-note { margin: 0; line-height: 1.6; }

.compact-pricing-layout { max-width: var(--max); }
.regional-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 840px;
  margin-top: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  overflow: hidden;
}
.regional-price {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 18px 22px;
  color: var(--white);
}
.regional-price + .regional-price { border-left: 1px solid rgba(255,255,255,.16); }
.regional-price strong { font-size: 21px; font-weight: 500; }
.region-label {
  color: #e0b86a;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .08em;
}
.pricing-summary {
  margin: 18px 0 0;
  color: rgba(255,255,255,.68);
}

.contact-section {
  background: var(--paper);
  padding: 72px 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-copy { max-width: 460px; }
.contact-copy p:not(.eyebrow) { color: var(--muted); }
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  max-width: 720px;
}
.form-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.form-field.full,
.contact-form .button,
.contact-form .form-note {
  grid-column: 1 / -1;
}
.form-field label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 28, 53, .28);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
.contact-form input { min-height: 50px; padding: 10px 12px; }
.contact-form textarea { min-height: 150px; padding: 12px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--navy);
}
.contact-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
  font: inherit;
}
.form-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.form-note a { font-weight: 700; }

footer { background: #091225; color: rgba(255,255,255,.7); padding: 22px 0; font-size: 13px; }
.footer-line { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-line strong { color: var(--white); letter-spacing: .14em; }
.footer-meta { display: flex; align-items: center; justify-content: flex-end; gap: 18px; flex-wrap: wrap; }
.footer-meta a,
.footer-meta button {
  color: rgba(255,255,255,.78);
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-meta button { padding: 0; border: 0; background: transparent; cursor: pointer; }
.footer-meta a:hover,
.footer-meta button:hover { color: var(--white); }

.analytics-consent {
  position: fixed;
  z-index: 1000;
  right: 22px;
  bottom: 22px;
  width: min(520px, calc(100% - 44px));
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: #091225;
  color: var(--white);
  box-shadow: 0 20px 55px rgba(0,0,0,.3);
}
.analytics-consent[hidden] { display: none; }
.analytics-consent-inner { padding: 24px; }
.analytics-consent h2 { margin: 0 0 10px; color: var(--white); font-size: 24px; letter-spacing: 0; }
.analytics-consent p { margin: 0; color: rgba(255,255,255,.78); font-size: 15px; }
.analytics-consent a { color: var(--white); }
.analytics-consent-actions { display: flex; gap: 10px; margin-top: 20px; }
.analytics-consent button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 3px;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.analytics-consent button[data-analytics-choice="granted"] { background: var(--white); color: var(--navy); }
.analytics-consent button:hover { border-color: var(--white); }

.privacy-main { background: var(--paper); min-height: calc(100vh - 152px); padding: 64px 0 80px; }
.privacy-content { max-width: 820px; }
.privacy-content h1 { max-width: 760px; }
.privacy-content h2 { margin-top: 42px; font-size: 28px; letter-spacing: 0; }
.privacy-content p,
.privacy-content li { color: #42516a; }
.privacy-content ul { padding-left: 22px; }
.privacy-content .analytics-status { margin: 28px 0 14px; color: var(--navy); font-weight: 700; }
.privacy-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.privacy-actions .button { border: 1px solid var(--navy); cursor: pointer; font: inherit; }
.privacy-actions .button.secondary { background: transparent; color: var(--navy); }

@media (max-width: 850px) {
  .hero, .split, .contact-layout { grid-template-columns: 1fr; }
  .hero { gap: 34px; padding-top: 52px; }
  .split { gap: 32px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(3) { border-left: 0; }
  .install-layout { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .brand-note, .brand-rule { display: none; }
  .hero { padding: 42px 0 50px; }
  h1 { font-size: 42px; }
  .skills-section, .rollout { padding: 50px 0; }
  .image-pair, .steps { grid-template-columns: 1fr; }
  .step, .step + .step { padding: 20px 0; border-left: 0; border-top: 1px solid var(--line); }
  .steps { border-top: 0; }
  .pricing-section { padding-bottom: 52px; }
  .pricing-layout { padding-top: 36px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 14px; }
  .pricing-card { min-height: 0; padding: 26px 22px; }
  .regional-prices { grid-template-columns: 1fr; }
  .regional-price + .regional-price {
    border-top: 1px solid rgba(255,255,255,.16);
    border-left: 0;
  }
  .regional-price strong { font-size: 19px; }
  .contact-section { padding: 52px 0; }
  .contact-layout { gap: 26px; }
  .contact-form { grid-template-columns: 1fr; }
  .form-field,
  .form-field.full,
  .contact-form .button,
  .contact-form .form-note { grid-column: 1; }
  .button, .button.large { width: 100%; }
  .footer-line, .footer-meta { flex-direction: column; align-items: flex-start; }
  .footer-meta { gap: 10px; }
  .analytics-consent { right: 14px; bottom: 14px; width: calc(100% - 28px); }
  .analytics-consent-inner { padding: 20px; }
  .analytics-consent-actions { flex-direction: column-reverse; }
  .analytics-consent button { width: 100%; }
  .privacy-main { padding: 46px 0 60px; }
}
