:root {
  color-scheme: light;
  --orange-50: #fff3e8;
  --orange-100: #ffd9b8;
  --orange-400: #ff8a1f;
  --orange-500: #f26a11;
  --orange-600: #d94f05;
  --blue-50: #eaf7ff;
  --blue-100: #c7ebff;
  --blue-400: #38bdf8;
  --blue-500: #0ea5e9;
  --blue-700: #0369a1;
  --charcoal: #111827;
  --slate: #1f2937;
  --ink: #17202c;
  --muted: #657184;
  --line: #dce5ee;
  --surface: #ffffff;
  --soft: #f4f7fa;
  --shadow: 0 26px 70px rgba(15, 23, 42, 0.13);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans Thai", "Inter", system-ui, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fafc 52%, #ffffff 100%);
  line-height: 1.65;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(var(--max), calc(100% - 40px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(199, 235, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(17, 24, 39, 0.84);
  color: #fff;
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 24, 39, 0.96);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 224px;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(242, 106, 17, 0.28);
}

.brand strong {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0;
  line-height: 1.15;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

.header-cta {
  padding: 10px 16px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.86fr);
  column-gap: 70px;
  align-items: center;
  min-height: 790px;
  padding: 168px max(24px, calc((100vw - var(--max)) / 2)) 46px;
  overflow: hidden;
  background: #0f172a;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(14, 165, 233, 0.35), transparent 28%),
    radial-gradient(circle at 20% 78%, rgba(242, 106, 17, 0.34), transparent 32%),
    linear-gradient(135deg, #0d1321 0%, #1f2937 48%, #101827 100%);
}

.hero-bg::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.08), #000 34%, #000 72%, rgba(0, 0, 0, 0.1));
}

.city-grid {
  position: absolute;
  right: -110px;
  bottom: -60px;
  width: min(56vw, 760px);
  height: 520px;
  background:
    linear-gradient(180deg, transparent 0 38%, rgba(56, 189, 248, 0.22) 38% 39%, transparent 39%),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(199, 235, 255, 0.1) 39px 40px),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(199, 235, 255, 0.08) 39px 40px);
  transform: perspective(840px) rotateX(60deg) rotateZ(-20deg);
  transform-origin: 50% 70%;
  opacity: 0.9;
}

.signal {
  position: absolute;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
}

.signal-one {
  top: 160px;
  right: 310px;
  width: 360px;
  height: 360px;
}

.signal-two {
  right: 120px;
  bottom: 130px;
  width: 520px;
  height: 520px;
  animation-delay: -2s;
}

.media-console {
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2));
  top: 170px;
  width: min(44vw, 520px);
  min-width: 420px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.console-top {
  display: flex;
  gap: 8px;
  padding-bottom: 16px;
}

.console-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange-400);
}

.console-panels {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 14px;
}

.panel {
  min-height: 170px;
  border-radius: var(--radius);
  background: rgba(18, 15, 13, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chart-panel {
  background:
    linear-gradient(130deg, rgba(255, 138, 31, 0.16), transparent 42%),
    linear-gradient(90deg, transparent 18%, rgba(255, 138, 31, 0.7) 18% 24%, transparent 24%),
    linear-gradient(90deg, transparent 38%, rgba(255, 138, 31, 0.45) 38% 44%, transparent 44%),
    linear-gradient(90deg, transparent 60%, rgba(255, 138, 31, 0.55) 60% 66%, transparent 66%),
    linear-gradient(90deg, transparent 80%, rgba(255, 138, 31, 0.35) 80% 86%, transparent 86%),
    rgba(18, 15, 13, 0.76);
}

.map-panel {
  background:
    radial-gradient(circle at 30% 28%, var(--orange-400) 0 4px, transparent 5px),
    radial-gradient(circle at 72% 58%, var(--orange-400) 0 4px, transparent 5px),
    radial-gradient(circle at 54% 76%, var(--orange-400) 0 3px, transparent 4px),
    linear-gradient(135deg, transparent 48%, rgba(255, 138, 31, 0.5) 49% 50%, transparent 51%),
    rgba(18, 15, 13, 0.76);
}

.lens-panel {
  grid-column: 1 / -1;
  min-height: 116px;
  background:
    radial-gradient(circle at 18% 50%, transparent 0 26px, rgba(255, 138, 31, 0.85) 27px 30px, transparent 31px),
    linear-gradient(90deg, rgba(255, 138, 31, 0.18), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 22px),
    rgba(18, 15, 13, 0.76);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(630px, 100%);
}

.hero h1 {
  margin: 0;
  font-family: "Inter", "Noto Sans Thai", sans-serif;
  font-size: clamp(48px, 6.8vw, 96px);
  font-weight: 800;
  line-height: 0.95;
}

.hero p {
  max-width: 585px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  color: #fff;
  box-shadow: 0 18px 36px rgba(242, 106, 17, 0.32);
}

.button-secondary {
  border: 1px solid rgba(199, 235, 255, 0.24);
  background: rgba(56, 189, 248, 0.12);
  color: #fff;
}

.hero-preview {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  align-self: end;
  margin-top: 86px;
  border: 1px solid rgba(199, 235, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(199, 235, 255, 0.09);
}

.hero-preview div {
  padding: 22px;
  background: rgba(15, 23, 42, 0.44);
  backdrop-filter: blur(14px);
}

.ai-command {
  position: relative;
  z-index: 2;
  align-self: center;
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(199, 235, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(56, 189, 248, 0.12), rgba(255, 138, 31, 0.08)),
    rgba(17, 24, 39, 0.84);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.ai-command-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.ai-command-top strong {
  padding: 5px 8px;
  border-radius: var(--radius);
  background: rgba(14, 165, 233, 0.18);
  color: var(--blue-100);
  font-size: 11px;
}

.camera-wall {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.camera-wall figure {
  position: relative;
  min-height: 185px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0f0c0a;
}

.camera-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.camera-wall figure::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(56, 189, 248, 0.46);
  background:
    linear-gradient(90deg, transparent 49%, rgba(56, 189, 248, 0.48) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 138, 31, 0.28) 50%, transparent 51%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.46));
}

.camera-wall figcaption {
  position: absolute;
  z-index: 1;
  left: 12px;
  bottom: 10px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.ai-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ai-metrics div {
  min-height: 86px;
  padding: 13px;
  border: 1px solid rgba(199, 235, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.ai-metrics span,
.ai-metrics strong {
  display: block;
}

.ai-metrics span {
  color: var(--blue-100);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.ai-metrics strong {
  margin-top: 7px;
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
}

.network-map {
  position: relative;
  min-height: 94px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 138, 31, 0.13), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 26px),
    rgba(0, 0, 0, 0.22);
}

.network-map::before {
  position: absolute;
  left: 7%;
  right: 8%;
  top: 50%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--blue-400), var(--orange-400), transparent);
}

.network-map i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.78);
}

.network-map i:nth-child(1) { left: 10%; top: 43%; }
.network-map i:nth-child(2) { left: 31%; top: 26%; }
.network-map i:nth-child(3) { left: 52%; top: 57%; }
.network-map i:nth-child(4) { left: 72%; top: 32%; }
.network-map i:nth-child(5) { left: 88%; top: 49%; }

.hero-preview strong,
.hero-preview span {
  display: block;
  font-family: "Inter", sans-serif;
}

.hero-preview strong {
  font-size: 22px;
  line-height: 1;
}

.hero-preview span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 600;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0;
}

.trust-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(var(--max), calc(100% - 40px));
  margin: -28px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 88px;
  padding: 18px 20px;
  background: #fff;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--charcoal);
  font-size: 15px;
}

.trust-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.palette-band {
  width: min(var(--max), calc(100% - 40px));
  margin: -28px auto 0;
  position: relative;
  z-index: 4;
}

.palette-band > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.palette-band strong,
.palette-band span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.palette-band strong {
  background: var(--charcoal);
  color: #fff;
}

.palette-band span {
  background: var(--orange-50);
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.7fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading.centered {
  display: block;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.section-label {
  margin: 0 0 10px;
  color: var(--blue-700);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section h2,
.contact-section h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading > p:last-child,
.section-heading.centered p:last-child,
.about-content > p,
.contact-info > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.service-card {
  position: relative;
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 233, 0.34);
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 28px 0 10px;
  font-family: "Inter", "Noto Sans Thai", sans-serif;
  font-size: 22px;
  line-height: 1.18;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-card a {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--blue-50);
  color: var(--blue-700);
  font-family: "Inter", sans-serif;
  font-weight: 800;
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-50), var(--orange-50));
  color: var(--blue-700);
}

.target-icon {
  background:
    radial-gradient(circle, transparent 0 9px, currentColor 10px 12px, transparent 13px 20px, currentColor 21px 23px, transparent 24px),
    var(--orange-50);
}

.megaphone-icon {
  background:
    linear-gradient(35deg, transparent 18%, currentColor 19% 31%, transparent 32%),
    linear-gradient(90deg, currentColor 20%, transparent 21%),
    var(--orange-50);
}

.video-icon {
  background:
    linear-gradient(currentColor, currentColor) 15px 16px / 20px 20px no-repeat,
    linear-gradient(135deg, transparent 48%, currentColor 49% 68%, transparent 69%) 30px 16px / 18px 20px no-repeat,
    var(--orange-50);
}

.data-icon {
  background:
    linear-gradient(currentColor, currentColor) 14px 28px / 6px 12px no-repeat,
    linear-gradient(currentColor, currentColor) 23px 20px / 6px 20px no-repeat,
    linear-gradient(currentColor, currentColor) 32px 14px / 6px 26px no-repeat,
    var(--orange-50);
}

.gate-icon {
  background:
    linear-gradient(currentColor, currentColor) 12px 23px / 28px 6px no-repeat,
    linear-gradient(currentColor, currentColor) 13px 15px / 5px 25px no-repeat,
    linear-gradient(currentColor, currentColor) 34px 15px / 5px 25px no-repeat,
    var(--orange-50);
}

.network-icon {
  background:
    radial-gradient(circle at 16px 16px, currentColor 0 4px, transparent 5px),
    radial-gradient(circle at 36px 18px, currentColor 0 4px, transparent 5px),
    radial-gradient(circle at 26px 36px, currentColor 0 4px, transparent 5px),
    linear-gradient(35deg, transparent 45%, currentColor 46% 50%, transparent 51%),
    var(--orange-50);
}

.phone-icon {
  background:
    linear-gradient(currentColor, currentColor) 18px 11px / 17px 30px no-repeat,
    radial-gradient(circle at 26px 36px, var(--orange-50) 0 2px, transparent 3px),
    var(--orange-50);
}

.fire-icon {
  background:
    radial-gradient(ellipse at 50% 65%, currentColor 0 15px, transparent 16px),
    linear-gradient(135deg, transparent 28%, currentColor 29% 56%, transparent 57%),
    var(--orange-50);
}

.workflow {
  width: 100%;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(234, 247, 255, 0.92), rgba(255, 243, 232, 0.62)),
    var(--soft);
}

.ai-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 62px;
  padding: 108px max(20px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 80% 18%, rgba(14, 165, 233, 0.28), transparent 26%),
    radial-gradient(circle at 15% 90%, rgba(242, 106, 17, 0.22), transparent 30%),
    #111827;
  color: #fff;
}

.ai-copy {
  position: sticky;
  top: 128px;
  align-self: start;
}

.ai-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.12;
}

.ai-copy p:last-child {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.ai-process {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ai-process article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(199, 235, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.14), rgba(255, 138, 31, 0.08) 58%, transparent),
    rgba(255, 255, 255, 0.055);
}

.ai-process span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-500), var(--orange-500));
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.ai-process h3 {
  margin: 34px 0 10px;
  color: #fff;
  font-family: "Inter", "Noto Sans Thai", sans-serif;
  font-size: 22px;
  line-height: 1.18;
}

.ai-process p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 42px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.projects {
  padding-bottom: 80px;
}

.project-gallery {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.85fr;
  gap: 18px;
}

.project-gallery article {
  display: grid;
  align-content: end;
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--shadow);
}

.project-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-gallery article::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.72));
}

.project-gallery strong,
.project-gallery span {
  position: relative;
  z-index: 1;
  margin-inline: 22px;
}

.project-gallery strong {
  font-size: 22px;
  line-height: 1.2;
}

.project-gallery span {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 700;
}

.reference-list,
.partner-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.reference-list {
  grid-template-columns: repeat(6, 1fr);
}

.reference-list span {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-family: "Inter", "Noto Sans Thai", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.partners {
  padding-top: 80px;
}

.news-section {
  padding-top: 84px;
}

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

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 34px rgba(51, 30, 14, 0.06);
}

.news-card img,
.skeleton-news div {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--orange-50);
}

.news-card > div:last-child {
  padding: 22px;
}

.news-card span {
  color: var(--blue-700);
  font-family: "Inter", "Noto Sans Thai", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.news-card h3 {
  margin: 10px 0 8px;
  color: var(--charcoal);
  font-size: 21px;
  line-height: 1.28;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.skeleton-news {
  min-height: 320px;
}

.skeleton-news span {
  display: block;
  padding: 22px;
}

.admin-showcase {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
  padding: 108px max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(234, 247, 255, 0.92), rgba(255, 243, 232, 0.62)),
    #f8fafc;
}

.admin-showcase h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.12;
}

.admin-showcase-copy > p:last-of-type {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.admin-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.admin-feature-row span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
}

.admin-screen {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(199, 235, 255, 0.42);
  border-radius: var(--radius);
  background: #111827;
  box-shadow: var(--shadow);
}

.admin-screen-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  background: #0f172a;
  color: #fff;
}

.admin-screen-sidebar strong {
  color: var(--orange-100);
  font-size: 18px;
}

.admin-screen-sidebar span {
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.admin-screen-main {
  padding: 24px;
  background:
    radial-gradient(circle at 82% 12%, rgba(56, 189, 248, 0.2), transparent 34%),
    #f8fafc;
}

.screen-toolbar,
.screen-stat-grid,
.screen-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.screen-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  color: var(--charcoal);
  font-weight: 800;
}

.screen-toolbar strong {
  color: var(--blue-700);
}

.screen-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 14px;
  overflow: hidden;
  background: var(--line);
}

.screen-stat-grid div {
  padding: 16px;
  background: #fff;
}

.screen-stat-grid strong,
.screen-stat-grid span {
  display: block;
}

.screen-stat-grid strong {
  color: var(--orange-600);
  font-size: 20px;
  line-height: 1;
}

.screen-stat-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.screen-table {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 16px;
}

.screen-table span {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-100), var(--orange-100));
}

.screen-table span:nth-child(even) {
  width: 72%;
  background: #e2e8f0;
}

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

.partner-grid div {
  min-height: 160px;
  padding: 24px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(56, 189, 248, 0.1), transparent 52%),
    var(--charcoal);
  color: #fff;
}

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

.partner-grid strong {
  color: var(--blue-100);
  font-family: "Inter", sans-serif;
  font-size: 18px;
}

.partner-grid span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.timeline article {
  min-height: 280px;
  padding: 30px 24px;
  background: #fff;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.timeline h3 {
  margin: 32px 0 8px;
  font-family: "Inter", sans-serif;
  font-size: 21px;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.office-visual {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 138, 31, 0.9), rgba(217, 79, 5, 0.86)),
    linear-gradient(135deg, #2a1d14, #0f0c0a);
  box-shadow: var(--shadow);
}

.office-visual::before {
  position: absolute;
  inset: 34px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
}

.office-wall {
  position: absolute;
  left: 48px;
  right: 48px;
  top: 170px;
  color: #fff;
}

.office-wall span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: clamp(62px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.9;
}

.office-wall small {
  display: block;
  margin-top: 14px;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.office-light {
  position: absolute;
  right: -46px;
  bottom: -70px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.about-content h2 {
  margin-bottom: 24px;
}

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

.proof-grid div,
.company-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq {
  padding-top: 68px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 38px auto 0;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(51, 30, 14, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--charcoal);
  font-size: 16px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

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

.proof-grid strong,
.company-card strong {
  font-size: 16px;
}

.proof-grid span,
.company-card span {
  color: var(--muted);
  font-size: 14px;
}

.company-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  background: var(--orange-50);
}

.building-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background:
    linear-gradient(#fff, #fff) 14px 12px / 5px 5px no-repeat,
    linear-gradient(#fff, #fff) 25px 12px / 5px 5px no-repeat,
    linear-gradient(#fff, #fff) 14px 23px / 5px 5px no-repeat,
    linear-gradient(#fff, #fff) 25px 23px / 5px 5px no-repeat,
    var(--orange-500);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
  padding: 108px max(20px, calc((100vw - var(--max)) / 2));
  background: #17110d;
  color: #fff;
}

.contact-section h2 {
  color: #fff;
}

.contact-info > p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.68);
}

dl {
  display: grid;
  gap: 18px;
  margin: 42px 0 0;
}

dt {
  color: var(--orange-400);
  font-weight: 800;
}

dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.contact-form small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.contact-form .wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  outline: 0;
  padding: 13px 14px;
  font-size: 15px;
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange-400);
  background: rgba(255, 255, 255, 0.13);
}

.consent {
  display: flex !important;
  grid-template-columns: 18px 1fr;
  align-items: flex-start;
}

.consent input {
  width: 18px;
  margin-top: 4px;
  accent-color: var(--orange-500);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--orange-100);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 42px;
  padding: 46px max(20px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 12% 20%, rgba(14, 165, 233, 0.16), transparent 28%),
    linear-gradient(135deg, #0f172a, #111827 54%, #1f2937);
  color: #fff;
}

.admin-body {
  min-height: 100vh;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 78% 8%, rgba(14, 165, 233, 0.28), transparent 28%),
    radial-gradient(circle at 22% 92%, rgba(242, 106, 17, 0.2), transparent 30%),
    linear-gradient(135deg, #0f172a, #111827 48%, #1f2937);
}

.admin-shell {
  min-height: 100vh;
}

.admin-login {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}

.admin-login-form,
.news-editor,
.news-table-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.24);
}

.admin-login-form {
  display: grid;
  gap: 16px;
  width: min(440px, 100%);
  padding: 30px;
  border-color: rgba(14, 165, 233, 0.18);
}

.admin-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.admin-login .admin-brand {
  position: fixed;
  top: 26px;
  left: 26px;
}

.admin-brand strong,
.admin-brand span {
  display: block;
}

.admin-brand span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.admin-login-form h1,
.admin-head h1 {
  margin: 0;
  color: var(--charcoal);
  font-size: 38px;
  line-height: 1.08;
}

.admin-login-form p,
.admin-head p {
  margin: 0;
  color: var(--muted);
}

.admin-login-form label,
.news-editor label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-weight: 800;
}

.admin-login-form input,
.news-editor input,
.news-editor select,
.news-editor textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  outline: 0;
}

.admin-login-form input:focus,
.news-editor input:focus,
.news-editor select:focus,
.news-editor textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.14);
}

.admin-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue-700);
  font-weight: 800;
}

.admin-dashboard {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
  background: var(--soft);
}

.admin-sidebar {
  display: grid;
  align-content: start;
  gap: 28px;
  padding: 24px;
  background:
    radial-gradient(circle at 16% 12%, rgba(14, 165, 233, 0.2), transparent 28%),
    radial-gradient(circle at 94% 78%, rgba(242, 106, 17, 0.14), transparent 34%),
    linear-gradient(180deg, #0f172a, #111827 58%, #1f2937);
  color: #fff;
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar nav a,
.admin-logout,
.admin-secondary,
.admin-row-actions button {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  cursor: pointer;
  padding: 11px 12px;
  text-align: left;
  font-weight: 800;
}

.admin-sidebar nav a:hover,
.admin-logout:hover {
  border-color: rgba(56, 189, 248, 0.44);
  background: rgba(14, 165, 233, 0.16);
}

.admin-logout {
  color: #fff;
}

.admin-main {
  padding: 34px;
}

.admin-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.security-note {
  min-width: 260px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(14, 165, 233, 0.12);
  background: linear-gradient(135deg, #fff, var(--blue-50));
  color: var(--muted);
}

.security-note strong,
.security-note span {
  display: block;
}

.security-note strong {
  color: var(--charcoal);
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
}

.content-manager,
.news-manager {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.content-manager-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(14, 165, 233, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, var(--blue-50));
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.content-manager-head h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: 28px;
  line-height: 1.2;
}

.content-manager-head p {
  margin: 0;
  color: var(--muted);
}

.module-editor,
.news-editor {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-content: start;
  padding: 22px;
}

.module-editor {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.12);
}

.news-editor .wide {
  grid-column: 1 / -1;
}

.module-editor .wide {
  grid-column: 1 / -1;
}

.module-editor label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-weight: 800;
}

.module-editor select,
.module-editor textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  outline: 0;
}

.module-editor textarea {
  min-height: 420px;
  resize: vertical;
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  line-height: 1.55;
  color: #0f172a;
  background:
    linear-gradient(90deg, rgba(14, 165, 233, 0.05), transparent 38%),
    #fbfdff;
}

.module-editor select:focus,
.module-editor textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.14);
}

.module-editor small,
.news-editor small {
  color: var(--muted);
  font-weight: 600;
}

.admin-actions {
  display: flex;
  gap: 12px;
}

.admin-secondary {
  background: #fff;
  color: var(--charcoal);
  border-color: var(--line);
  text-align: center;
}

.admin-secondary:hover,
.admin-row-actions button:hover {
  border-color: rgba(14, 165, 233, 0.32);
  color: var(--blue-700);
}

.news-table-panel {
  padding: 22px;
}

.table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.table-head h2 {
  margin: 0;
}

.admin-news-list {
  display: grid;
  gap: 14px;
}

.admin-news-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.admin-news-item img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius);
}

.admin-news-meta,
.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.admin-news-meta span,
.admin-news-meta strong {
  padding: 4px 8px;
  border-radius: var(--radius);
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 12px;
}

.admin-news-item h3 {
  margin: 8px 0 4px;
  line-height: 1.25;
}

.admin-news-item p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.admin-row-actions button {
  color: var(--charcoal);
  border-color: var(--line);
  background: #fff;
  padding: 8px 10px;
}

.empty-state {
  margin: 0;
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

.site-footer div {
  display: grid;
  gap: 8px;
  align-content: start;
}

.site-footer strong {
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

.site-footer a,
.site-footer span,
.site-footer small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-brand strong {
  color: var(--orange-400);
  font-size: 28px;
}

.socials {
  display: flex !important;
  flex-direction: row;
  gap: 10px !important;
}

.socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.34;
  }

  50% {
    transform: scale(1.04);
    opacity: 0.76;
  }
}

@media (max-width: 980px) {
  .site-header {
    width: min(100% - 24px, var(--max));
  }

  .hero,
  .ai-section,
  .trust-strip,
  .admin-showcase {
    grid-template-columns: 1fr;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.is-open .nav-links {
    position: absolute;
    display: grid;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    gap: 0;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(21, 18, 15, 0.96);
  }

  .site-header.is-open .nav-links a {
    padding: 14px;
  }

  .hero {
    min-height: 820px;
    padding-top: 132px;
  }

  .media-console {
    top: auto;
    right: 24px;
    bottom: 170px;
    width: calc(100% - 48px);
    min-width: 0;
    opacity: 0.62;
  }

  .ai-command {
    margin-top: 24px;
  }

  .ai-copy {
    position: static;
  }

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

  .hero-preview,
  .section-heading,
  .about,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .timeline,
  .proof-grid,
  .partner-grid,
  .project-gallery,
  .ai-process,
  .news-grid,
  .admin-grid,
  .admin-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-dashboard,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }

  .admin-head {
    display: grid;
  }

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

  .timeline article {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .site-header {
    left: 12px;
    right: 12px;
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px);
    margin-top: 12px;
    padding: 10px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand small {
    display: none;
  }

  .menu-button {
    display: block;
    flex: 0 0 42px;
    position: absolute;
    top: 10px;
    right: auto;
    left: 132px;
    z-index: 3;
  }

  .hero {
    min-height: 740px;
    padding: 116px 20px 30px;
  }

  .hero h1 {
    max-width: calc(100vw - 40px);
    font-size: 36px;
    line-height: 1.04;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero p {
    width: calc(100vw - 96px);
    max-width: calc(100vw - 96px);
    font-size: 15px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .camera-wall,
  .ai-metrics,
  .ai-process {
    grid-template-columns: 1fr;
  }

  .ai-command {
    width: min(100%, 340px);
    max-width: calc(100vw - 40px);
    overflow: hidden;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions {
    width: min(100%, 340px);
    max-width: 100%;
    align-items: stretch;
  }

  .button {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .media-console {
    bottom: 176px;
    padding: 12px;
    opacity: 0.38;
  }

  .panel {
    min-height: 112px;
  }

  .lens-panel {
    min-height: 76px;
  }

  .hero-preview {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .trust-strip {
    margin-top: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .trust-strip div {
    min-height: auto;
  }

  .ai-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .admin-showcase {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .admin-screen {
    grid-template-columns: 1fr;
  }

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

  .hero-preview div {
    padding: 16px;
  }

  .section {
    width: min(100% - 32px, var(--max));
    padding: 76px 0;
  }

  .section h2,
  .contact-section h2 {
    font-size: 34px;
  }

  .service-grid,
  .timeline,
  .proof-grid,
  .project-gallery,
  .partner-grid,
  .news-grid,
  .module-editor,
  .news-editor,
  .admin-news-item,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .admin-main {
    padding: 22px;
  }

  .admin-login .admin-brand {
    position: static;
    margin-bottom: 22px;
  }

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

  .project-gallery article {
    min-height: 340px;
  }

  .service-card {
    min-height: 260px;
  }

  .office-visual {
    min-height: 390px;
  }

  .office-wall {
    left: 30px;
    right: 30px;
    top: 130px;
  }

  .office-wall span {
    font-size: 58px;
  }

  .contact-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
