:root {
  color-scheme: dark;
  --bg: #01030c;
  --bg-soft: rgba(7, 12, 27, 0.9);
  --panel: rgba(9, 15, 33, 0.86);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --text: #f4f6fb;
  --text-muted: rgba(255, 255, 255, 0.66);
  --accent: #5ea0ff;
  --accent-strong: #3177ff;
  --radius-large: 32px;
  --radius-medium: 20px;
  --shadow-soft: 0 30px 80px rgba(0, 0, 0, 0.7);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont,
    "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(circle at top, #09102a 0, #01030c 45%, #000000 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-shell {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 60px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: rgba(1, 3, 12, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: opacity 0.16s ease-out;
  cursor: pointer;
}

.brand:hover {
  opacity: 0.8;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(140deg, #b5e5ff, #6ea9ff 60%, #2152ff);
  box-shadow: 0 12px 30px rgba(76, 126, 255, 0.8);
}

.brand-name {
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color 0.16s ease-out;
}

.nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.16s ease-out;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav a:hover {
  color: #fff;
}

/* Hero */

.hero {
  padding: 80px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 60px;
  align-items: start;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 0;
}

.hero-kicker {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
  padding-top: 0;
}

.hero-title {
  font-size: clamp(42px, 7vw, 72px);
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  margin: 0;
  max-width: 520px;
}

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

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.12s ease-out,
    box-shadow 0.12s ease-out,
    background 0.12s ease-out,
    color 0.12s ease-out,
    border-color 0.12s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent) 0, var(--accent-strong) 100%);
  color: #fff;
  box-shadow: 0 18px 50px rgba(47, 114, 255, 0.6);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 25px 60px rgba(47, 114, 255, 0.8);
}

.btn-ghost {
  background: transparent;
  color: #fdfdfd;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  text-decoration: none;
  color: #b7d5ff;
  border: 1px solid rgba(183, 213, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.16s ease-out;
}

.btn-outline:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.hero-glance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.glance-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.glance-value {
  font-size: 16px;
  font-weight: 600;
}

.hero-insight {
  border-radius: var(--radius-large);
  padding: 30px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(19, 32, 73, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 0;
}

.insight-card {
  border-radius: 26px;
  padding: 20px 22px;
  background: rgba(1, 3, 12, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.insight-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.insight-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.insight-metric strong {
  font-size: 20px;
  letter-spacing: 0.02em;
}

.insight-metric span {
  color: var(--text-muted);
  font-size: 14px;
}

.insight-note {
  background: rgba(255, 255, 255, 0.05);
}

.insight-note-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.insight-note-body {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.insight-note a {
  color: var(--accent);
  text-decoration: none;
}

.insight-note a:hover {
  text-decoration: underline;
}

/* Sections */

section {
  padding: 40px 0 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

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

.section-title {
  font-size: 34px;
  margin: 4px 0 0;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--text-muted);
  margin: 0 0 4px;
}

/* Apps carousel */

.apps-row {
  padding-top: 40px;
}

.apps-carousel {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  perspective: 1400px;
  isolation: isolate;
  padding: 20px 0 40px;
}

.app-card {
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  bottom: 0;
  margin: auto;
  width: min(74vw, 560px);
  min-height: 300px;
  border-radius: var(--radius-medium);
  padding: 120px 40px 30px;
  background: var(--panel);
  box-shadow: 0 20px 45px rgba(1, 3, 12, 0.7);
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px) scale(0.9);
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    transform 0.5s ease,
    filter 0.3s ease;
}

.app-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(1, 3, 12, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.app-card.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  z-index: 3;
}

.app-card.is-prev,
.app-card.is-next {
  opacity: 0.35;
  visibility: visible;
  filter: blur(2px);
  z-index: 2;
}

.app-card.is-prev {
  transform: translateX(-35%) translateY(18px) scale(0.94);
}

.app-card.is-next {
  transform: translateX(35%) translateY(18px) scale(0.94);
}

.app-card.is-prev::after,
.app-card.is-next::after {
  opacity: 1;
  background: rgba(0, 0, 0, 0.65);
}

.app-icon-wrap {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent);
}

.app-icon {
  width: 150px;
  height: 150px;
  border-radius: 34px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.app-main {
  flex: 1;
}

.app-name {
  font-size: 22px;
  font-weight: 600;
}

.app-tagline {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: 4px;
}

.app-platforms {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.app-platform-pill {
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-muted);
}

.app-links {
  display: flex;
  gap: 8px;
  margin-top: auto;
  flex-wrap: wrap;
}

.app-link-pill {
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.16s ease-out;
}

.app-link-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.3);
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-button {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.12s ease-out;
}

.carousel-button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.carousel-button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.apps-error,
.apps-empty {
  font-size: 14px;
  color: var(--text-muted);
  padding: 12px 4px;
}

.apps-table {
  margin-top: 20px;
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(1, 3, 12, 0.8);
  box-shadow: 0 25px 55px rgba(1, 3, 12, 0.7);
  overflow: hidden;
}

.apps-table-head,
.apps-table-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 16px;
  padding: 16px 20px;
}

.apps-table-head {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.02);
}

.apps-table-row + .apps-table-row {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.apps-table-row {
  font-size: 15px;
  color: var(--text-muted);
  align-items: center;
  --app-accent: rgba(94, 160, 255, 0.35);
}

.apps-table-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.apps-table-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--app-accent);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.08), var(--app-accent));
  box-shadow: 0 20px 45px var(--app-accent);
}

.apps-table-icon-wrap.placeholder {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
  font-size: 14px;
}

.apps-table-icon {
  /* width: 100%; */
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.apps-table-row .app-name {
  font-size: 18px;
  color: #fff;
}

.apps-table-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 44px;
  align-content: flex-start;
}

.apps-table-platforms span {
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
}

.apps-table-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.apps-table-link {
  font-size: 13px;
  text-decoration: none;
  border-radius: 999px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(120deg, rgba(94, 160, 255, 0.2), rgba(49, 119, 255, 0.35));
  color: #f5f7ff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.apps-table-link:hover {
  border-color: rgba(255, 255, 255, 0.45);
}

.apps-table-link.ghost {
  background: transparent;
  color: #9ec9ff;
  border-color: rgba(158, 201, 255, 0.4);
}

.apps-table-link.ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

/* Essentials */

.essentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
}

.essential-card {
  background: var(--panel);
  border-radius: var(--radius-medium);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 55px rgba(1, 3, 12, 0.7);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.essential-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.essential-card:hover::before {
  opacity: 1;
}

.essential-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.essential-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 65px rgba(1, 3, 12, 0.8);
}

.essential-card:hover::after {
  opacity: 1;
}

.essential-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(94, 160, 255, 0.15), rgba(49, 119, 255, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
  border: 1px solid rgba(94, 160, 255, 0.2);
}

.essential-card h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.essential-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.essential-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 14px;
}

.essential-company-name {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #fff !important;
  margin-bottom: 4px !important;
}

.essential-company-number {
  color: var(--accent) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

.essential-address {
  margin-top: 8px !important;
  line-height: 1.6 !important;
}

.essential-location-text {
  margin-bottom: 16px !important;
}

.essential-map {
  background: linear-gradient(160deg, rgba(62, 93, 255, 0.12), rgba(2, 6, 23, 0.9));
}

.essential-legal {
  background: linear-gradient(160deg, rgba(94, 160, 255, 0.08), rgba(1, 3, 12, 0.9));
}

.map-embed {
  margin: 18px -24px 0;
  border-radius: 0 0 var(--radius-medium) var(--radius-medium);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  min-height: 240px;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.45) contrast(1.05) brightness(0.82);
}

.map-embed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(27, 40, 89, 0.5), rgba(2, 6, 23, 0.7));
  mix-blend-mode: color;
  pointer-events: none;
}

.map-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #b7d5ff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(183, 213, 255, 0.08);
  border: 1px solid rgba(183, 213, 255, 0.2);
  transition: all 0.2s ease-out;
}

.map-link:hover {
  color: #fff;
  background: rgba(183, 213, 255, 0.15);
  border-color: rgba(183, 213, 255, 0.4);
  transform: translateX(2px);
}

.map-pin {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  position: relative;
  box-shadow: 0 12px 30px rgba(31, 78, 255, 0.4);
}

.map-pin::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

/* Contacts */

.contacts-row {
  padding-bottom: 32px;
}

.contact-card {
  border-radius: var(--radius-medium);
  padding: 34px;
  background: linear-gradient(150deg, rgba(69, 111, 255, 0.35), rgba(1, 3, 12, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(1, 3, 12, 0.8);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.contact-chip {
  align-self: center;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  padding: 4px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin: 0 auto;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.9), rgba(82, 127, 255, 0.6));
  box-shadow: 0 15px 30px rgba(5, 10, 30, 0.8);
  position: relative;
}

.contact-icon::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 6px;
  border: 2px solid rgba(1, 3, 12, 0.4);
}

.contact-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-text {
  font-size: 16px;
}

.main-contact {
  font-size: 20px;
  font-weight: 600;
  color: #b7d5ff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  justify-content: center;
  margin: 0 auto;
}

.main-contact:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-foot {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 24px;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  flex: 1;
  min-width: 0;
}

.footer-company {
  min-width: 200px;
}

.footer-company-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.footer-company-details {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 200px;
}

.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.16s ease-out;
  white-space: nowrap;
}

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

.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.16s ease-out;
}

.site-footer a:hover {
  color: var(--accent);
}

.small-muted {
  opacity: 0.8;
}

/* Privacy Policy Pages */

.privacy-section {
  padding: 60px 0 40px;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content {
  background: var(--panel);
  border-radius: var(--radius-medium);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 55px rgba(1, 3, 12, 0.7);
  line-height: 1.7;
}

.privacy-content h2 {
  font-size: 22px;
  margin: 32px 0 12px;
  color: #fff;
  font-weight: 600;
}

.privacy-content h2:first-of-type {
  margin-top: 0;
}

.privacy-content p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

.privacy-content ul {
  margin: 12px 0 20px;
  padding-left: 24px;
  color: var(--text-muted);
}

.privacy-content li {
  margin: 8px 0;
  line-height: 1.6;
}

.privacy-content strong {
  color: #fff;
  font-weight: 600;
}

/* Responsive */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
 

  .hero-glance {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .hero-insight {
    order: -1;
  }

  .essentials-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .essential-card {
    padding: 22px;
  }

  .site-header-inner {
    padding: 16px 24px;
  }
}

@media (max-width: 768px) {
  .site-shell {
    padding: 0 20px 40px;
  }

  .site-header-inner {
    padding: 14px 20px;
    flex-wrap: wrap;
  }

  .brand {
    font-size: 14px;
  }

  .nav {
    font-size: 12px;
    gap: 16px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .essentials-grid {
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .site-shell {
    padding-inline: 18px;
  }


  .apps-table-head {
    display: none;
  }

  .nav {
    display: none;
  }

  .hero {
    padding: 48px 0 28px;
  }

  .hero-title {
    font-size: clamp(32px, 12vw, 44px);
  }

  .hero-insight {
    padding: 22px;
  }

  .carousel-controls {
    display: none;
  }

  .apps-carousel {
    min-height: unset;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 0;
  }

  .app-card,
  .app-card.is-prev,
  .app-card.is-next {
    position: relative;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    filter: none;
    pointer-events: auto;
    padding: 60px 20px 24px;
  }

  .app-card::after {
    display: none;
  }

  .app-icon-wrap {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
  }

  .app-icon {
    width: 110px;
    height: 110px;
  }

  .apps-table-head,
  .apps-table-row {
    grid-template-columns: 1fr;
  }

  .section-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .privacy-content {
    padding: 24px 20px;
  }

  .privacy-content h2 {
    font-size: 20px;
    margin: 24px 0 10px;
  }

  .essentials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .essential-card {
    padding: 20px;
  }

  .essential-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .essential-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .map-embed {
    min-height: 200px;
    margin: 16px -20px 0;
  }

  .hero-insight {
    gap: 16px;
  }

  .insight-card {
    padding: 18px 20px;
  }

  .contact-card {
    padding: 28px 24px;
  }

  .site-footer {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .site-footer > div:first-child {
    width: 100%;
  }

  .footer-links {
    width: 100%;
    justify-content: flex-start;
  }

  .essential-company-name {
    font-size: 15px !important;
  }

  .essential-company-number {
    font-size: 12px !important;
  }

  .essential-address {
    font-size: 13px !important;
  }

  .map-link {
    font-size: 13px;
    padding: 6px 10px;
  }

  .site-footer {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-main {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }

  .footer-company,
  .footer-copyright {
    width: 100%;
    min-width: 0;
  }

  .footer-links {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .site-shell {
    padding: 0 16px 32px;
  }

  .hero-title {
    font-size: clamp(28px, 10vw, 36px);
  }

  .section-title {
    font-size: 28px;
  }

  .essential-card {
    padding: 18px;
  }

  .essential-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }

  .essential-icon svg {
    width: 20px;
    height: 20px;
  }

  .map-embed {
    min-height: 180px;
  }
}
