:root {
  --navy-950: #030c18;
  --navy-900: #061426;
  --navy-850: #091a30;
  --navy-800: #0b223d;
  --ink: #0c1524;
  --muted: #586779;
  --blue: #0b5de0;
  --blue-light: #2f80ff;
  --blue-dark: #0847b8;
  --cyan: #2fc4e8;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --line: #dbe3ec;
  --line-dark: rgba(255,255,255,.18);
  --success: #157347;
  --error: #b42318;
  --shadow: 0 18px 55px rgba(9, 29, 55, .12);
  --container: 1210px;
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3.2rem, 5vw, 5.1rem); }
h2 { font-size: clamp(2.25rem, 4.2vw, 3.85rem); }
h3 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }

.container { width: min(calc(100% - 44px), var(--container)); margin-inline: auto; }
.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; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 10px 16px; color: #fff; background: var(--blue); text-decoration: none; }
.skip-link:focus { top: 16px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(12,21,36,.08);
  backdrop-filter: blur(12px);
}
.nav-wrap { position: relative; min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 15px; color: var(--ink); text-decoration: none; }
.brand-logo { width: 62px; height: 49px; flex: 0 0 auto; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 1.65rem; letter-spacing: -.045em; }
.brand-copy span { margin-top: 7px; color: var(--blue); font-size: .73rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 38px; }
.site-nav > a:not(.button) { position: relative; color: #101722; font-size: .98rem; font-weight: 700; text-decoration: none; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--blue); transition: right .2s ease; }
.site-nav > a:not(.button):hover::after,
.site-nav > a[aria-current="page"]::after { right: 0; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid var(--blue);
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  box-shadow: 0 10px 24px rgba(11,93,224,.22);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(11,93,224,.28); }
.button-small { min-height: 52px; padding-inline: 24px; }
.button svg { width: 20px; height: 20px; }
.button-secondary { border-color: rgba(255,255,255,.55); background: rgba(4,13,25,.32); box-shadow: none; }
.button-secondary:hover { background: rgba(255,255,255,.1); }
.text-link { color: var(--blue-dark); font-weight: 800; text-underline-offset: 5px; }

/* Hero */
.hero { position: relative; overflow: hidden; color: #fff; background: var(--navy-950); }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(3,12,24,1) 0%, rgba(3,12,24,.98) 25%, rgba(3,12,24,.85) 48%, rgba(3,12,24,.25) 78%, rgba(3,12,24,.08) 100%),
    linear-gradient(0deg, rgba(3,12,24,.72) 0%, rgba(3,12,24,0) 38%),
    url('/assets/hero-pc.jpg');
  background-repeat: no-repeat;
  background-size: cover, cover, auto 100%;
  background-position: center, center, right center;
  transform: scale(1.002);
}
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(15,82,168,.12), transparent 35%); }
.hero-content { position: relative; z-index: 2; min-height: 645px; padding: 94px 0 44px; display: flex; flex-direction: column; justify-content: space-between; }
.hero-copy { max-width: 860px; }
.eyebrow { margin-bottom: 19px; color: var(--blue-light); font-size: .8rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.hero .eyebrow { color: #65d5f2; }
.hero h1 { max-width: 900px; margin-bottom: 30px; color: #fff; }
.hero h1 span { display: block; }
.hero h1 .accent { color: var(--blue-light); }
.hero-lead { max-width: 690px; margin-bottom: 32px; color: #f0f4fa; font-size: clamp(1.08rem, 1.7vw, 1.35rem); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-feature { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: center; min-width: 0; padding: 0 27px; }
.hero-feature:first-child { padding-left: 0; }
.hero-feature + .hero-feature { border-left: 1px solid rgba(255,255,255,.28); }
.hero-feature-icon { width: 42px; height: 42px; color: #dce9ff; }
.hero-feature strong { display: block; color: #fff; font-size: .98rem; }
.hero-feature span { display: block; margin-top: 2px; color: #c8d2df; font-size: .85rem; line-height: 1.35; }

/* Section systems */
.section { padding: 92px 0; }
.section-soft { background: var(--soft); }
.section-dark { color: #fff; background: var(--navy-900); }
.section-intro { max-width: 820px; margin: 0 auto 52px; text-align: center; }
.section-intro h2 { margin-bottom: 18px; }
.section-intro p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.section-dark .section-intro p:not(.eyebrow) { color: #c7d2df; }

.service-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 10px 30px rgba(7,28,54,.05); }
.service-card-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 27px; border-radius: 10px; color: var(--blue); background: #eaf2ff; }
.service-card-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 13px; }
.service-card p { margin-bottom: 0; color: var(--muted); }
.data-care-note { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; margin-top: 34px; padding: 25px 28px; border-left: 4px solid var(--blue); background: #eef4fc; }
.data-care-note .note-icon { width: 34px; height: 34px; color: var(--blue); }
.data-care-note strong { display: block; margin-bottom: 4px; font-size: 1.05rem; }
.data-care-note p { margin: 0; color: var(--muted); }
.service-disclaimer { margin: 25px 0 0; color: var(--muted); text-align: center; font-size: .9rem; }

/* Contact */
.contact-section { padding: 95px 0; background: linear-gradient(135deg, #07172a, #0b2340); }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.contact-heading { position: sticky; top: 135px; color: #fff; }
.contact-heading h2 { margin-bottom: 22px; }
.contact-heading p:not(.eyebrow) { max-width: 500px; color: #c7d2df; font-size: 1.08rem; }
.contact-points { display: grid; gap: 16px; margin-top: 34px; }
.contact-point { display: flex; gap: 13px; align-items: center; color: #e9f0f8; }
.contact-point svg { width: 24px; height: 24px; color: #68d4f2; }
.contact-form { padding: 36px; border-radius: 10px; background: #fff; box-shadow: var(--shadow); }
.form-row { display: grid; gap: 18px; margin-bottom: 18px; }
.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: grid; gap: 7px; }
.field label { color: #0d1725; font-size: .9rem; font-weight: 800; }
.field label span { color: var(--blue); }
input, select, textarea { width: 100%; border: 1px solid #cbd6e2; border-radius: 6px; color: var(--ink); background: #fff; outline: none; transition: border-color .2s, box-shadow .2s; }
input, select { min-height: 52px; padding: 0 14px; }
textarea { min-height: 140px; padding: 13px 14px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11,93,224,.12); }
[aria-invalid="true"] { border-color: var(--error); }
.field small { color: #6a7685; font-size: .78rem; }
.checkbox-row { display: flex; gap: 11px; align-items: flex-start; margin: 21px 0; color: #5c6877; font-size: .84rem; }
.checkbox-row input { width: 18px; min-height: 18px; margin-top: 2px; }
.checkbox-row a { color: var(--blue-dark); }
.turnstile-wrap { min-height: 66px; margin: 4px 0 16px; overflow: hidden; }
.form-submit { width: 100%; }
.form-status { min-height: 24px; margin-top: 13px; font-size: .9rem; font-weight: 700; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--error); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Interior pages */
.page-hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(120deg, var(--navy-950), var(--navy-800)); }
.page-hero::after { content: ""; position: absolute; width: 520px; height: 520px; right: -180px; top: -220px; border-radius: 50%; background: radial-gradient(circle, rgba(47,128,255,.35), transparent 68%); }
.page-hero-inner { position: relative; z-index: 1; max-width: 950px; padding: 88px 0 92px; }
.page-hero h1 { margin-bottom: 24px; font-size: clamp(3rem, 5.5vw, 5.15rem); }
.page-hero p:not(.eyebrow) { max-width: 780px; margin-bottom: 0; color: #cbd6e2; font-size: 1.15rem; }
.content-section { padding: 88px 0; }
.service-detail-list { display: grid; gap: 25px; }
.service-detail { display: grid; grid-template-columns: 68px 1fr; gap: 25px; padding: 35px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.service-detail-icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 10px; color: var(--blue); background: #eaf2ff; }
.service-detail-icon svg { width: 30px; height: 30px; }
.service-detail h2 { margin-bottom: 13px; font-size: clamp(1.7rem, 3vw, 2.35rem); }
.service-detail p, .plain-list { color: var(--muted); }
.plain-list { padding-left: 21px; }
.data-care-panel { margin-top: 24px; padding: 38px; border-radius: var(--radius); color: #fff; background: linear-gradient(135deg, #0b2340, #0b5de0); }
.data-care-panel .eyebrow { color: #8ee2f5; }
.data-care-panel p { color: #e0e9f3; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.process-step { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.process-step > span { display: inline-grid; place-items: center; width: 44px; height: 44px; margin-bottom: 28px; border-radius: 50%; color: #fff; background: var(--blue); font-weight: 900; }
.process-step h2 { font-size: 1.45rem; }
.process-step p { margin-bottom: 0; color: var(--muted); }
.info-split, .about-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 75px; margin-top: 80px; }
.rule-list { border-top: 1px solid var(--line); }
.rule-list div { display: grid; grid-template-columns: 180px 1fr; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.rule-list span { color: var(--muted); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-grid article { padding: 31px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.value-grid p { color: var(--muted); }
.service-area-band { display: grid; grid-template-columns: 1fr .7fr; gap: 50px; align-items: end; margin-top: 70px; padding: 44px; border-radius: var(--radius); color: #fff; background: linear-gradient(135deg, var(--navy-900), var(--blue-dark)); }
.service-area-band .eyebrow { color: #8ee2f5; }
.service-area-band h2 { margin-bottom: 0; }
.service-area-band > p { margin: 0; color: #d7e0ea; }
.faq-page-list { max-width: 940px; margin-inline: auto; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 25px 58px 25px 0; cursor: pointer; list-style: none; font-size: 1.1rem; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); color: var(--blue); font-size: 1.65rem; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { max-width: 800px; margin: 0; padding: 0 55px 27px 0; color: var(--muted); }
.cta-band { padding: 58px 0; color: #fff; background: linear-gradient(135deg, #07172a, #0c2c51); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.cta-band .eyebrow { color: #65d5f2; }
.cta-band h2 { max-width: 800px; margin-bottom: 0; font-size: clamp(1.9rem, 3.5vw, 3.1rem); }

/* Footer */
.site-footer { padding: 54px 0 34px; color: #b9c6d2; background: #020a14; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 35px; align-items: end; }
.footer-brand { margin-bottom: 17px; color: #fff; }
.footer-brand .brand-copy strong { color: #fff; }
.footer-brand .brand-copy span { color: #6fa2ff; }
.footer-grid p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; }
.footer-links a { color: #c8d2df; text-decoration: none; font-size: .9rem; }
.footer-links a:hover { color: #fff; }
.copyright { grid-column: 1 / -1; padding-top: 27px; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }

/* Legal */
.legal-page { background: var(--soft); }
.legal-main { padding: 70px 0 95px; }
.legal-content { max-width: 900px; padding: 52px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 35px rgba(8,28,54,.06); }
.legal-content h1 { font-size: clamp(2.8rem, 5vw, 4.6rem); }
.legal-content h2 { margin-top: 36px; margin-bottom: 9px; font-size: 1.35rem; }
.legal-content p { color: var(--muted); }
.legal-updated { margin-top: -8px; font-size: .87rem; }
.legal-note { margin: 38px 0 25px; padding: 18px 20px; border-left: 4px solid var(--blue); background: var(--soft); }

@media (max-width: 1040px) {
  .site-nav { gap: 25px; }
  .hero-features { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .hero-feature:nth-child(3) { border-left: 0; padding-left: 0; }
  .contact-layout, .info-split, .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-heading { position: static; }
  .service-card-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .value-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .nav-wrap { min-height: 75px; }
  .brand-logo { width: 49px; height: 38px; }
  .brand-copy strong { font-size: 1.35rem; }
  .brand-copy span { font-size: .61rem; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 15px;
    right: 15px;
    top: calc(100% + 8px);
    display: none;
    padding: 14px 18px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; }
  .site-nav > a { padding: 12px 3px; }
  .site-nav .button { margin-top: 8px; }
  .hero::before {
    background-image:
      linear-gradient(90deg, rgba(3,12,24,.97), rgba(3,12,24,.82)),
      linear-gradient(0deg, rgba(3,12,24,.75), rgba(3,12,24,.05)),
      url('/assets/hero-pc.jpg');
    background-size: cover, cover, cover;
    background-position: center, center, 63% center;
  }
  .hero-content { min-height: auto; padding: 70px 0 34px; }
  .hero-copy { max-width: 100%; }
  .hero h1 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .hero-features { grid-template-columns: 1fr; margin-top: 55px; }
  .hero-feature, .hero-feature:first-child, .hero-feature:nth-child(3) { padding: 16px 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .hero-feature:first-child { border-top: 0; }
  .section, .contact-section, .content-section { padding: 68px 0; }
  .section-intro { margin-bottom: 35px; }
  .service-card-grid { grid-template-columns: 1fr; }
  .two-columns { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .page-hero-inner { padding: 67px 0 72px; }
  .service-detail { grid-template-columns: 1fr; padding: 27px; }
  .data-care-note { grid-template-columns: 1fr; }
  .rule-list div { grid-template-columns: 1fr; gap: 5px; }
  .service-area-band { grid-template-columns: 1fr; gap: 23px; padding: 31px 25px; }
  .cta-band-inner { display: grid; align-items: start; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .footer-links { justify-content: flex-start; }
  .copyright { grid-column: 1; }
  .legal-content { padding: 34px 23px; }
}

@media (max-width: 500px) {
  .brand-copy span { max-width: 180px; line-height: 1.25; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .service-card { padding: 27px; }
  .contact-form { margin-inline: 0; }
  .turnstile-wrap { transform-origin: left top; transform: scale(.92); margin-bottom: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}


/* --------------------------------------------------------------------------
   July 2026 layout correction
   - forces the approved white corporate masthead
   - shows the PC workshop hero photograph
   - prevents inline SVGs from inheriting oversized dimensions
   - removes the duplicate hero action
   -------------------------------------------------------------------------- */

:root {
  --container: 1360px;
  --header-height: 104px;
}

.site-header {
  background: #ffffff !important;
  border-bottom: 1px solid #e4e9ef !important;
  box-shadow: none !important;
  color: #0b1422;
  backdrop-filter: none !important;
}

.nav-wrap {
  min-height: var(--header-height);
}

.brand {
  gap: 18px;
  color: #0b1422 !important;
}

.brand-logo {
  display: block;
  width: 78px;
  height: 61px;
  flex: 0 0 78px;
  object-fit: contain;
}

.brand-copy {
  display: grid !important;
  align-content: center;
  line-height: 1;
}

.brand-copy strong {
  color: #080d15;
  font-size: 2rem;
  font-weight: 850;
  letter-spacing: -.045em;
}

.brand-copy span {
  margin-top: 8px;
  color: #0b5de0;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .13em;
  line-height: 1.15;
  text-transform: uppercase;
}

.site-nav > a:not(.button) {
  color: #101722 !important;
  font-size: 1rem;
  font-weight: 750;
}

.site-nav .button {
  color: #fff !important;
}

.hero {
  min-height: 650px;
  background: #030c18;
}

.hero::before {
  transform: none;
  background-image:
    linear-gradient(90deg, rgba(3,12,24,.98) 0%, rgba(3,12,24,.94) 28%, rgba(3,12,24,.73) 53%, rgba(3,12,24,.27) 78%, rgba(3,12,24,.10) 100%),
    linear-gradient(0deg, rgba(3,12,24,.80) 0%, rgba(3,12,24,.08) 46%),
    url('/assets/hero-pc.jpg');
  background-repeat: no-repeat;
  background-size: cover, cover, cover;
  background-position: center, center, center right;
}

.hero::after {
  background: linear-gradient(90deg, rgba(15,82,168,.10), transparent 35%);
}

.hero-content {
  min-height: 650px;
  padding: 92px 0 34px;
}

.hero-copy {
  max-width: 790px;
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 5.8vw, 6rem);
  line-height: .98;
  letter-spacing: -.052em;
}

.hero h1 .accent {
  margin-top: 8px;
  color: #2f80ff;
}

.hero-lead {
  max-width: 700px;
  color: #f3f6fa;
  font-size: clamp(1.08rem, 1.55vw, 1.30rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-action-note {
  max-width: 260px;
  color: #dce4ee;
  font-size: .93rem;
  font-weight: 650;
  line-height: 1.4;
}

.hero-features {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 62px;
  padding-top: 23px;
}

.hero-feature {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  overflow: hidden;
}

.hero-feature-icon {
  display: grid;
  place-items: center;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px;
  max-width: 42px;
  overflow: hidden;
}

.hero-feature-icon > svg {
  display: block !important;
  width: 38px !important;
  height: 38px !important;
  max-width: 38px !important;
  max-height: 38px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  overflow: visible;
}

.button > svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  flex: 0 0 20px;
}

.service-card,
.service-detail,
.data-care-note,
.contact-point {
  overflow: hidden;
}

.service-card-icon,
.service-detail-icon,
.note-icon,
.contact-point > svg {
  flex: 0 0 auto;
}

.service-card-icon > svg {
  display: block !important;
  width: 28px !important;
  height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
}

.service-detail-icon > svg {
  display: block !important;
  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;
  max-height: 30px !important;
}

.note-icon > svg {
  display: block !important;
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
}

.contact-point > svg {
  display: block !important;
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
}

.footer-brand .brand-logo {
  padding: 5px;
  border-radius: 6px;
  background: #fff;
}

@media (max-width: 1040px) {
  :root { --header-height: 90px; }
  .brand-logo { width: 65px; height: 51px; flex-basis: 65px; }
  .brand-copy strong { font-size: 1.65rem; }
  .site-nav { gap: 25px; }
  .hero-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-feature:nth-child(3) { border-left: 0; padding-left: 0; }
}

@media (max-width: 780px) {
  :root { --header-height: 76px; }
  .site-header { position: sticky; }
  .brand { gap: 10px; }
  .brand-logo { width: 50px; height: 39px; flex-basis: 50px; }
  .brand-copy strong { font-size: 1.28rem; }
  .brand-copy span { margin-top: 5px; font-size: .57rem; letter-spacing: .09em; }
  .site-nav { background: #fff !important; }
  .site-nav > a:not(.button) { color: #101722 !important; }
  .hero { min-height: auto; }
  .hero::before {
    background-image:
      linear-gradient(90deg, rgba(3,12,24,.97), rgba(3,12,24,.77)),
      linear-gradient(0deg, rgba(3,12,24,.82), rgba(3,12,24,.15)),
      url('/assets/hero-pc.jpg');
    background-size: cover, cover, cover;
    background-position: center, center, 62% center;
  }
  .hero-content { min-height: auto; padding: 70px 0 28px; }
  .hero h1 { font-size: clamp(3rem, 13vw, 4.7rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 13px; }
  .hero-action-note { max-width: 100%; }
  .hero-features { grid-template-columns: 1fr; margin-top: 48px; }
  .hero-feature,
  .hero-feature:first-child,
  .hero-feature:nth-child(3) {
    padding: 15px 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.16);
  }
  .hero-feature:first-child { border-top: 0; }
}

@media (max-width: 500px) {
  .brand-copy span { max-width: 155px; }
  .hero-actions .button { width: auto; min-width: 176px; }
}
