:root {
  color-scheme: light;
  --ink: #182026;
  --muted: #5f6a72;
  --line: #d8dde1;
  --paper: #f7f8f5;
  --surface: #ffffff;
  --dark: #211717;
  --brand: #4a2414;
  --gold: #c9b986;
  --blue: #2d5c77;
  --green: #3f6f58;
  --amber: #8c6e25;
  --shadow: 0 16px 40px rgba(20, 29, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(216, 221, 225, 0.82);
  background: rgba(247, 248, 245, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.brand span {
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 26px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.language-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.lang-btn {
  min-height: 36px;
  padding: 7px 10px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--brand);
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(36px, 6vw, 82px) clamp(18px, 5vw, 72px) clamp(32px, 5vw, 64px);
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-strip span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--brand);
  color: #fff;
}

.button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

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

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(33, 23, 23, 0.92), rgba(21, 30, 37, 0.92)),
    var(--dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.hero-logo {
  width: 120px;
  height: 120px;
  border: 1px solid rgba(201, 185, 134, 0.32);
  object-fit: cover;
}

.device-stack {
  position: absolute;
  right: clamp(18px, 4vw, 48px);
  bottom: 180px;
  left: clamp(18px, 4vw, 48px);
  display: grid;
  place-items: center;
}

.multi-device-stack {
  bottom: 170px;
  min-height: 270px;
}

.multi-laptop,
.multi-phone,
.multi-tablet {
  position: absolute;
  background: linear-gradient(135deg, #1b2730, #2d5c77 52%, #c9b986);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

.multi-laptop {
  width: min(74%, 430px);
  aspect-ratio: 16 / 10;
  left: 8%;
  bottom: 30px;
  border: 12px solid #0d1115;
  border-bottom-width: 22px;
  border-radius: 12px 12px 4px 4px;
}

.multi-laptop::after {
  position: absolute;
  right: -40px;
  bottom: -42px;
  left: -40px;
  height: 20px;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(90deg, #9aa4ab, #eff2f3 50%, #87929a);
  content: "";
}

.multi-phone {
  width: 92px;
  height: 178px;
  right: 12%;
  bottom: 18px;
  border: 8px solid #0d1115;
  border-radius: 24px;
}

.multi-tablet {
  width: 210px;
  height: 150px;
  right: 20%;
  top: 10px;
  border: 10px solid #0d1115;
  border-radius: 22px;
}

.device-screen {
  width: min(100%, 420px);
  aspect-ratio: 16 / 10;
  border: 12px solid #0d1115;
  border-bottom-width: 18px;
  border-radius: 8px 8px 4px 4px;
  background:
    linear-gradient(135deg, rgba(201, 185, 134, 0.86), rgba(45, 92, 119, 0.78)),
    linear-gradient(90deg, #191f26, #353f48);
}

.device-screen::before {
  content: attr(data-label);
  display: block;
  padding: 26px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.05;
}

.device-base {
  width: min(88%, 470px);
  height: 24px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, #b4bdc5, #f1f3f4 48%, #9fa9b1);
}

.hero-stats {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
}

.hero-stats div {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats dt {
  margin: 0;
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.summary-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.summary-band div {
  padding: 28px clamp(18px, 4vw, 52px);
  background: #fff;
}

.summary-band strong,
.summary-band span {
  display: block;
}

.summary-band strong {
  font-size: 17px;
}

.summary-band span {
  margin-top: 6px;
  color: var(--muted);
}

.section {
  position: relative;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.anchor-alias {
  position: absolute;
  top: -84px;
}

.section-heading {
  max-width: 960px;
  margin-bottom: 30px;
}

.section-heading.compact {
  display: block;
  margin-bottom: 0;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading.compact p:not(.eyebrow) {
  margin-top: 18px;
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.catalog-section {
  background: var(--paper);
}

.category-block + .category-block,
.featured-apple + .category-block {
  margin-top: 42px;
}

.category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 16px;
}

.category-heading h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.category-heading > span {
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.phone-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.catalog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.catalog-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #eef2f2;
}

.catalog-card-body {
  padding: 18px;
}

.brand-label {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-list.compact {
  min-height: 112px;
}

.featured-apple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 26px;
  padding: 24px;
  border: 1px solid rgba(201, 185, 134, 0.55);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(201, 185, 134, 0.16), rgba(45, 92, 119, 0.08)),
    #fff;
}

.featured-apple p:not(.eyebrow) {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
}

.tablet-request-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.tablet-request-card img {
  width: 100%;
  border-radius: 8px;
  background: #f0ead8;
}

.tablet-request-card p {
  max-width: 740px;
  color: var(--muted);
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
  background:
    linear-gradient(140deg, rgba(45, 92, 119, 0.18), rgba(63, 111, 88, 0.16)),
    #f2f4f3;
}

.product-visual:not(.product-visual-image)::before {
  content: "";
  width: min(78%, 260px);
  aspect-ratio: 16 / 10;
  border: 8px solid #22282e;
  border-bottom-width: 16px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(135deg, #dde4e9, #aab8c3);
}

.product-visual-image {
  padding: 0;
  background: #eef2f2;
}

.product-visual-image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.product-visual span {
  position: absolute;
  padding: 5px 9px;
  border-radius: 6px;
  background: rgba(24, 32, 38, 0.9);
  color: #fff;
  font-weight: 900;
}

.product-body {
  padding: 20px;
}

.product-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.tag {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 6px;
  background: #edf4f1;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.product-intro {
  min-height: 72px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.spec-list {
  display: grid;
  gap: 8px;
  min-height: 158px;
  margin: 18px 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.spec-list li {
  padding-left: 16px;
  position: relative;
}

.spec-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
}

.product-meta span {
  color: var(--green);
}

.product-meta a {
  color: var(--blue);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 16px;
}

.product-detail-grid div {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.product-detail-grid span,
.product-detail-grid strong {
  display: block;
}

.product-detail-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-detail-grid strong {
  margin-top: 4px;
  font-size: 13px;
}

.inventory-note {
  display: grid;
  grid-template-columns: minmax(180px, 0.24fr) minmax(0, 1fr);
  gap: 22px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.inventory-note strong {
  font-size: 18px;
}

.inventory-note p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: start;
  background: #fff;
}

.quality-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.quality-list div {
  display: grid;
  grid-template-columns: minmax(160px, 0.38fr) minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  background: #fff;
}

.quality-list strong {
  color: var(--ink);
}

.quality-list span,
.partner-grid p,
.reference-copy p,
.contact-copy p {
  color: var(--muted);
}

.reference-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.reference-copy p {
  font-size: 17px;
}

.reference-image {
  width: 100%;
  max-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: top left;
  box-shadow: var(--shadow);
}

.grade-section {
  background: #f8f7f1;
}

.grade-grid,
.matrix-grid,
.access-grid,
.faq-grid {
  display: grid;
  gap: 14px;
}

.grade-grid {
  grid-template-columns: repeat(4, 1fr);
}

.grade-grid article,
.matrix-grid article,
.access-grid article,
.faq-grid article {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.grade-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.grade-grid p,
.matrix-grid p,
.access-grid p,
.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.matrix-section {
  background: #fff;
}

.matrix-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-section {
  background: #f0f4f2;
}

.leasing-section {
  background:
    linear-gradient(120deg, rgba(33, 23, 23, 0.95), rgba(45, 92, 119, 0.92)),
    var(--dark);
  color: #fff;
}

.leasing-section .eyebrow {
  color: var(--gold);
}

.leasing-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.leasing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.leasing-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.leasing-grid strong {
  display: block;
  color: var(--gold);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
}

.leasing-grid h3 {
  margin-top: 18px;
}

.leasing-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #f3ead0;
  color: var(--amber);
  font-size: 14px;
  font-weight: 900;
}

.process-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.access-section {
  background:
    linear-gradient(120deg, rgba(45, 92, 119, 0.1), rgba(201, 185, 134, 0.14)),
    #fff;
}

.access-grid {
  grid-template-columns: repeat(3, 1fr);
}

.faq-section {
  background: #f7f8f5;
}

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

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.partner-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.partner-grid p {
  margin: 12px 0 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(320px, 0.74fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(33, 23, 23, 0.92), rgba(24, 32, 38, 0.92)),
    var(--dark);
  color: #fff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.contact-section .eyebrow {
  color: var(--gold);
}

.email-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
}

.company-card {
  display: grid;
  gap: 14px;
  max-width: 620px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.company-card span,
.company-card strong {
  display: block;
}

.company-card span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.company-card strong {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.45;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.inquiry-form label:nth-last-of-type(1),
.inquiry-form button,
.form-note {
  grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.inquiry-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: #11171c;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.not-found-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.not-found {
  max-width: 560px;
  text-align: center;
}

.not-found img {
  width: 118px;
  height: 118px;
  margin: 0 auto 24px;
  object-fit: cover;
}

.not-found h1 {
  font-size: clamp(38px, 8vw, 64px);
}

.not-found p:not(.eyebrow) {
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero,
  .section-heading,
  .split-section,
  .reference-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .inventory-grid,
  .catalog-grid,
  .phone-grid,
  .summary-band,
  .process-grid,
  .leasing-grid,
  .grade-grid,
  .matrix-grid,
  .access-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand span {
    white-space: normal;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-stats,
  .partner-grid,
  .inquiry-form,
  .product-detail-grid,
  .inventory-note,
  .tablet-request-card {
    grid-template-columns: 1fr;
  }

  .category-heading,
  .featured-apple {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-panel {
    min-height: 590px;
  }

  .device-stack {
    bottom: 245px;
  }

  .quality-list div {
    grid-template-columns: 1fr;
  }

  .email-link {
    font-size: 18px;
  }
}
