:root {
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #d9e2ee;
  --soft: #f5f8fb;
  --white: #ffffff;
  --blue: #2563eb;
  --blue-dark: #123c8c;
  --cyan: #0891b2;
  --green: #059669;
  --amber: #d97706;
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
  --radius: 8px;
  --container: 1180px;
  --section-y: 76px;
  --section-y-mobile: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

.section-pad {
  padding: var(--section-y) 0;
}

section[id],
.feature-quote[id],
a[id] {
  scroll-margin-top: 174px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 226, 238, 0.9);
  backdrop-filter: blur(14px);
}

.utility-bar,
.main-header,
.primary-nav {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.utility-bar {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #eef6ff;
  background: var(--blue-dark);
  width: 100%;
  padding: 0 max(20px, calc((100vw - var(--container)) / 2));
}

.utility-nav,
.utility-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
}

.utility-contact a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 50%;
  transition:
    background-color 160ms ease,
    transform 160ms ease,
    color 160ms ease;
}

.utility-contact a:hover,
.utility-contact a:focus-visible {
  color: #dff8ff;
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
  outline: none;
}

.utility-contact svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.main-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  width: 86px;
  height: auto;
}

.brand strong,
.brand small,
.phone-link strong,
.phone-link span {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1.2;
}

.brand small,
.phone-link span {
  color: var(--muted);
  font-size: 13px;
}

.phone-link {
  text-align: right;
}

.phone-link strong {
  font-size: 18px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 48px;
  border-top: 1px solid var(--line);
}

.primary-nav > a,
.nav-dropdown > button {
  height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: #253041;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  cursor: pointer;
}

.primary-nav > a:hover,
.nav-dropdown > button:hover {
  color: var(--blue);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: 48px;
  right: 0;
  min-width: 250px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 8px;
  display: none;
}

.nav-dropdown.is-open .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
  display: grid;
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 650;
}

.dropdown-menu a:hover {
  background: var(--soft);
  color: var(--blue);
}

.hero {
  min-height: 690px;
  position: relative;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #101827;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(7, 19, 33, 0.98) 0%, rgba(7, 19, 33, 0.95) 48%, rgba(7, 19, 33, 0.55) 72%, rgba(7, 19, 33, 0.18) 100%),
    url("assets/hero-onsite-remote-support.svg") center center / cover no-repeat;
}

.hero-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 116px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: #a7f3d0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue);
}

.hero .eyebrow {
  text-transform: none;
}

.hero h1 {
  width: min(760px, 100%);
  margin: 0;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  width: min(660px, 100%);
  margin: 26px 0 0;
  color: #d7e4f6;
  font-size: 20px;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.36);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-metrics {
  margin: 58px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-metrics div {
  min-width: 170px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.hero-metrics dt {
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 7px 0 0;
  color: #dbeafe;
  font-size: 14px;
}

.intro-section {
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  background-size:
    86px 86px,
    auto;
  padding-bottom: 0;
}

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

.intro-grid article,
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.intro-grid article {
  position: relative;
  min-height: 100%;
  padding: 28px;
  overflow: hidden;
  border-color: rgba(133, 164, 208, 0.55);
  background:
    radial-gradient(circle at 88% 0, rgba(8, 145, 178, 0.14), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.intro-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.intro-grid article::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -46px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 50%;
}

.intro-grid article:nth-child(2)::before {
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.intro-grid article:nth-child(3)::before {
  background: linear-gradient(90deg, var(--blue-dark), var(--amber));
}

.intro-grid article:hover {
  border-color: rgba(37, 99, 235, 0.42);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.12);
  transform: translateY(-3px);
}

.intro-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.intro-index {
  color: rgba(18, 60, 140, 0.32);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0;
}

.intro-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 32px rgba(37, 99, 235, 0.22);
}

.intro-grid article:nth-child(2) .intro-icon {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 32px rgba(5, 150, 105, 0.2);
}

.intro-grid article:nth-child(3) .intro-icon {
  background: linear-gradient(135deg, var(--blue-dark), var(--amber));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 32px rgba(217, 119, 6, 0.18);
}

.intro-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e9efff;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 850;
}

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

.intro-grid h2,
.service-card h3 {
  margin-top: 16px;
  font-size: 21px;
}

.intro-grid h2,
.intro-grid p {
  position: relative;
  z-index: 1;
}

.intro-grid h2 {
  margin-top: 24px;
  color: #0f172a;
  font-size: 24px;
}

.intro-grid p {
  margin-bottom: 0;
  color: #4b5b70;
}

p {
  color: var(--muted);
}

.feature-quote {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 230px;
  gap: 28px;
  align-items: center;
  margin: var(--section-y) 0 0;
  padding: 30px 34px;
  color: var(--ink);
  border: 1px solid rgba(37, 99, 235, 0.24);
  border-left: 6px solid var(--blue);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.12)),
    var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.11);
  overflow: hidden;
}

.feature-quote::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
}

.feature-quote-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 50px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
}

.feature-stars {
  margin-bottom: 12px;
  color: #f59e0b;
  font-size: 17px;
  letter-spacing: 0;
  line-height: 1;
}

.feature-quote p {
  margin: 0;
  color: #1f2937;
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: 0;
}

.feature-source {
  display: grid;
  justify-items: start;
  gap: 8px;
  padding-left: 28px;
  border-left: 1px solid rgba(37, 99, 235, 0.2);
}

.feature-source span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-source cite {
  color: var(--ink);
  font-style: normal;
  font-size: 19px;
  font-weight: 900;
}

.support-focus {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f6f9fc 0%, #ffffff 48%, #eef7fb 100%);
  background-size:
    86px 86px,
    auto;
}

.testimonials {
  background: var(--soft);
}

.support-layout {
  display: grid;
  gap: 32px;
}

.support-intro {
  max-width: 100%;
  padding: 30px 34px;
  border: 1px solid rgba(133, 164, 208, 0.46);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(8, 145, 178, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(12px);
}

.support-intro p:not(.eyebrow) {
  max-width: none;
}

.support-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  gap: 28px;
  align-items: stretch;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split-layout.reverse > :first-child {
  order: 2;
}

.support-points {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
  counter-reset: support-point;
}

.support-points div {
  counter-increment: support-point;
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  align-items: start;
  min-height: 0;
  padding: 22px 24px 22px 72px;
  overflow: hidden;
  border: 1px solid rgba(133, 164, 208, 0.5);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.07), transparent 40%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.support-points div::before {
  content: "0" counter(support-point);
  position: absolute;
  left: 20px;
  top: 22px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 12px 22px rgba(37, 99, 235, 0.22);
}

.support-points div::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.support-points div:nth-child(2)::before {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 12px 22px rgba(5, 150, 105, 0.2);
}

.support-points div:nth-child(2)::after {
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.support-points div:nth-child(3)::before {
  background: linear-gradient(135deg, var(--blue-dark), var(--amber));
  box-shadow: 0 12px 22px rgba(217, 119, 6, 0.18);
}

.support-points div:nth-child(3)::after {
  background: linear-gradient(90deg, var(--blue-dark), var(--amber));
}

.support-points strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.3;
}

.support-points span {
  color: var(--muted);
  line-height: 1.55;
}

.photo-panel {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #101827;
  box-shadow: var(--shadow);
}

.support-focus .photo-panel {
  height: 100%;
  min-height: 0;
}

.photo-panel img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.support-focus .photo-panel img {
  height: 100%;
  min-height: 0;
}

.photo-panel figcaption {
  padding: 14px 18px;
  color: #dbeafe;
  font-size: 13px;
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 34px;
}

.section-heading p:last-child {
  font-size: 20px;
}

.smart-break-title span {
  display: block;
}

.services {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(217, 226, 238, 0.72);
  border-bottom: 1px solid rgba(217, 226, 238, 0.72);
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 34%, #f6f9fc 100%);
  background-size:
    84px 84px,
    auto;
}

.services .container {
  position: relative;
  z-index: 1;
}

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

.more-services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.more-services-list a {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 108px;
  padding: 20px 46px 20px 20px;
  overflow: hidden;
  border: 1px solid rgba(133, 164, 208, 0.5);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 45%),
    var(--white);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.more-services-list a::after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 20px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

.more-services-list a:hover {
  border-color: rgba(37, 99, 235, 0.44);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.more-services-list strong {
  color: var(--ink);
  font-size: 17px;
}

.more-services-list span {
  color: var(--muted);
  font-size: 14px;
}

.service-card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  overflow: hidden;
  border-color: rgba(133, 164, 208, 0.52);
  background:
    radial-gradient(circle at 92% 0, rgba(8, 145, 178, 0.13), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.service-card:hover {
  border-color: rgba(37, 99, 235, 0.44);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
  transform: translateY(-3px);
}

.service-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.service-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--blue-dark), var(--blue));
}

.service-card:nth-child(4)::before {
  background: linear-gradient(90deg, var(--amber), var(--blue));
}

.service-card:nth-child(5)::before {
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.service-card:nth-child(6)::before {
  background: linear-gradient(90deg, var(--cyan), #64748b);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 14px 28px rgba(37, 99, 235, 0.22);
}

.service-card:nth-child(2) .service-icon {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 14px 28px rgba(5, 150, 105, 0.2);
}

.service-card:nth-child(3) .service-icon {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.service-card:nth-child(4) .service-icon {
  background: linear-gradient(135deg, var(--amber), var(--blue));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 14px 28px rgba(217, 119, 6, 0.18);
}

.service-card:nth-child(5) .service-icon {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 14px 28px rgba(5, 150, 105, 0.2);
}

.service-card:nth-child(6) .service-icon {
  background: linear-gradient(135deg, var(--cyan), #475569);
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 18px;
  color: #0f172a;
  line-height: 1.18;
}

.service-card h3 span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-left: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.09);
  color: var(--blue-dark);
  font-size: 11px;
  line-height: 1;
  font-weight: 850;
  vertical-align: middle;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 24px;
  color: #243044;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  transform: translateY(-50%);
}

.service-card li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.72em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateY(-50%);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.badges span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #243044;
  font-size: 13px;
  font-weight: 750;
}

.review-heading {
  width: 100%;
  margin-bottom: 26px;
}

.review-heading h2 {
  white-space: nowrap;
}

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

.review-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 12px;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
}

.review-logo {
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  overflow: hidden;
}

.review-logo img {
  max-width: 76%;
  max-height: 76%;
  object-fit: contain;
}

.stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 0;
}

.review-company {
  display: inline-flex;
  width: fit-content;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-color: rgba(37, 99, 235, 0.25);
  text-underline-offset: 4px;
}

.review-company:hover {
  color: var(--blue);
  text-decoration-color: currentColor;
}

.review-company-static {
  text-decoration: none;
}

.review-card blockquote {
  margin: 0;
  padding-top: 4px;
}

.review-card p {
  margin: 0;
  color: #243044;
}

.ops-panel {
  display: grid;
  gap: 14px;
}

.ops-panel div {
  padding: 24px;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: var(--soft);
}

.ops-panel span {
  color: var(--green);
  font-weight: 900;
}

.ops-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}

.ops-panel p {
  margin-bottom: 0;
}

.contact {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, #0f172a 0%, #16376d 58%, #0f766e 100%);
  background-size:
    88px 88px,
    auto;
}

.contact::before {
  content: "";
  position: absolute;
  right: max(20px, calc((100vw - var(--container)) / 2));
  top: 74px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.12) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, 0.12) 50%, transparent 51%);
  opacity: 0.45;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.contact-copy {
  padding-top: 18px;
}

.contact-copy .eyebrow {
  color: #9ee9f0;
}

.contact-copy h2 {
  color: #ffffff;
}

.contact-copy p {
  color: #dbeafe;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-list > a,
.contact-list > span {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(219, 234, 254, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(14px);
}

.contact-list a:hover {
  border-color: rgba(125, 211, 252, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.contact-list strong,
.contact-list small {
  display: block;
}

.contact-list strong {
  color: #ffffff;
  line-height: 1.25;
}

.contact-list small {
  margin-top: 3px;
  color: #c7d2fe;
  font-size: 13px;
  line-height: 1.45;
}

.contact-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #0f172a;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.2);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form {
  position: relative;
  display: grid;
  justify-self: end;
  width: min(100%, 560px);
  gap: 0;
  align-content: start;
  padding: 22px;
  overflow: hidden;
  border: 1px solid #b8cbd6;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(12, 39, 56, 0.16);
}

@media (min-width: 861px) {
  .contact-form {
    margin-top: 38px;
  }

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

  .form-row .form-field + .form-field {
    margin-top: 0;
  }
}

@media (min-width: 861px) {
  .contact .contact-form {
    align-self: end;
    margin-top: 0;
  }
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #f59e0b, #22c55e, #38bdf8);
}

.contact-form-title {
  margin: 0 0 18px;
  color: #16212d;
  font-size: 18px;
  line-height: 1.2;
}

.form-row {
  display: grid;
  gap: 12px;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field + .form-field,
.form-row + .form-field {
  margin-top: 12px;
}

.form-field label {
  color: #0b6f8f;
  font-size: 12px;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid #b8cbd6;
  border-radius: var(--radius);
  padding: 8px 11px;
  color: #16212d;
  background: #f8fafb;
  outline: none;
  font-size: 14px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #36c6d3;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(54, 198, 211, 0.13);
}

.form-field textarea {
  min-height: 92px;
  resize: vertical;
}

.contact-btn {
  width: 100%;
  margin-top: 16px;
  border: 0;
  border-radius: var(--radius);
  padding: 13px 18px;
  color: #ffffff;
  background: #0b6f8f;
  box-shadow: 0 12px 26px rgba(11, 111, 143, 0.24);
  font-weight: 800;
  cursor: pointer;
  transition:
    background 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

.contact-btn:hover {
  background: #102f42;
  box-shadow: 0 16px 32px rgba(8, 25, 39, 0.22);
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: #0b6f8f;
  font-size: 13px;
}

.form-status-error {
  color: #d97706;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(8, 145, 178, 0.34), transparent 28%),
    linear-gradient(135deg, #0b1324 0%, #123c8c 58%, #0891b2 100%);
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(7, 19, 33, 0.98) 0%, rgba(12, 36, 78, 0.94) 46%, rgba(12, 64, 105, 0.76) 68%, rgba(8, 145, 178, 0.56) 100%),
    url("assets/about-it-solutions-hero.svg") right center / min(62vw, 900px) auto no-repeat,
    linear-gradient(135deg, #0b1324 0%, #123c8c 58%, #0891b2 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 86px 86px;
  opacity: 0.24;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 54px;
  padding: 86px 0;
}

.about-hero .page-hero-grid {
  grid-template-columns: minmax(0, 880px);
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1;
}

.pdpa-hero h1 span {
  display: block;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: #dbeafe;
  font-size: 20px;
}

.about-hero .hero-actions {
  margin-top: 38px;
}

.legal-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(141, 227, 237, 0.26), transparent 25%),
    radial-gradient(circle at 58% 82%, rgba(34, 197, 94, 0.14), transparent 24%),
    linear-gradient(118deg, #071321 0%, #123c8c 54%, #0891b2 100%);
}

.legal-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
  min-height: 430px;
}

.legal-summary {
  position: relative;
  display: grid;
  gap: 0;
  padding: 8px 0 8px 30px;
}

.legal-summary::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #8de3ed, #22c55e);
  box-shadow: 0 0 36px rgba(141, 227, 237, 0.7);
}

.legal-summary::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 0;
  width: min(52vw, 520px);
  height: 1px;
  background: linear-gradient(90deg, rgba(141, 227, 237, 0.5), transparent);
}

.legal-summary span {
  margin-top: 22px;
  color: #8de3ed;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-summary span:first-child {
  margin-top: 0;
}

.legal-summary strong {
  display: block;
  max-width: 330px;
  margin-top: 6px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.18;
}

.legal-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.08), transparent 24%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    #f8fbff;
  background-size: auto, 86px 86px, 86px 86px, auto;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  align-items: start;
  gap: 34px;
}

.policy-toc,
.policy-card {
  border: 1px solid #cfe0f4;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
}

.policy-toc {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 8px;
  padding: 24px;
}

.policy-toc h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
}

.policy-toc a {
  color: #526276;
  font-size: 14px;
  font-weight: 750;
}

.policy-toc a:hover {
  color: var(--blue);
}

.policy-card {
  padding: clamp(30px, 5vw, 58px);
}

.policy-section + .policy-section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid #dbe7f5;
}

.policy-section h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.policy-section p {
  margin: 0;
  color: #536275;
  font-size: 18px;
  line-height: 1.75;
}

.policy-section p + p {
  margin-top: 14px;
}

.pdpa-card {
  word-break: normal;
  overflow-wrap: anywhere;
}

.pdpa-card h2,
.pdpa-card h3,
.pdpa-card p,
.pdpa-card li {
  font-family:
    "Noto Sans Thai", "Leelawadee UI", Th Sarabun New, Inter, ui-sans-serif,
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pdpa-card h3 {
  margin: 22px 0 10px;
  color: #123c8c;
  font-size: 22px;
  line-height: 1.25;
}

.policy-section ol {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 24px;
  color: #536275;
  font-size: 18px;
  line-height: 1.75;
}

.policy-section li::marker {
  color: var(--blue);
  font-weight: 900;
}

.privacy-form-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 8%, rgba(8, 145, 178, 0.34), transparent 26%),
    linear-gradient(135deg, #071321 0%, #123c8c 52%, #0f172a 100%);
}

.privacy-form-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 600px);
  align-items: start;
  gap: 56px;
}

.privacy-form-copy {
  max-width: 620px;
}

.privacy-form-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
}

.privacy-form-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: #dbeafe;
  font-size: 19px;
  line-height: 1.7;
}

.privacy-contact-form {
  margin-top: 0;
  border-top-color: #8de3ed;
}

.privacy-contact-form textarea {
  min-height: 170px;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 18%, rgba(141, 227, 237, 0.28), transparent 26%),
    radial-gradient(circle at 58% 84%, rgba(34, 197, 94, 0.12), transparent 24%),
    linear-gradient(118deg, #071321 0%, #123c8c 52%, #0891b2 100%);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 86px 86px;
  opacity: 0.24;
}

.contact-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: 58px;
  padding: 86px 0;
}

.contact-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 0.98;
}

.contact-hero p:not(.eyebrow) {
  max-width: 820px;
  margin: 24px 0 0;
  color: #dbeafe;
  font-size: 20px;
}

.contact-hero-actions {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 30px;
}

.contact-hero-actions::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #8de3ed, #22c55e);
  box-shadow: 0 0 36px rgba(141, 227, 237, 0.65);
}

.contact-hero-actions a {
  display: grid;
  gap: 4px;
}

.contact-hero-actions span {
  color: #8de3ed;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-hero-actions strong {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.15;
}

.contact-page-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.08), transparent 24%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    #f8fbff;
  background-size: auto, 86px 86px, 86px 86px, auto;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 600px);
  align-items: stretch;
  gap: 56px;
}

.contact-page-heading {
  grid-column: 1 / -1;
}

.contact-page-heading h2 {
  max-width: none;
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
}

.contact-page-heading > p:not(.eyebrow) {
  max-width: 980px;
  margin: 18px 0 0;
  color: #536275;
  font-size: 19px;
}

.contact-detail-list {
  display: grid;
  gap: 16px;
  margin-top: 0;
}

.contact-detail-item {
  display: grid;
  gap: 4px;
  padding: 20px 22px;
  border: 1px solid #cfe0f4;
  border-left: 5px solid #0891b2;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.08);
}

.contact-detail-item span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-detail-item strong {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}

.contact-detail-item small {
  color: #65758a;
  font-size: 15px;
}

.contact-page-form {
  width: 100%;
  height: 100%;
  margin-top: 0;
  align-self: stretch;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
}

.contact-page-form .form-row + .form-field {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  margin-bottom: 20px;
}

.contact-page-form textarea {
  height: 100%;
  min-height: 190px;
}

.contact-page-form .contact-btn {
  margin-top: 0;
}

.contact-page-form .form-status {
  min-height: 0;
  margin-top: 8px;
}

.contact-support-section {
  background: #ffffff;
}

.contact-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-support-grid article {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 30px;
  border: 1px solid #cfe0f4;
  border-top: 5px solid #2563eb;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(8, 145, 178, 0.12), transparent 32%),
    #ffffff;
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
}

.contact-support-grid span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #0891b2);
  font-weight: 900;
}

.contact-support-grid h2 {
  margin: 0;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.12;
}

.contact-support-grid p {
  margin: 16px 0 0;
  color: #536275;
  font-size: 17px;
}

.contact-faq-section {
  background: #f8fbff;
}

.contact-faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 54px;
}

.contact-faq-layout h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.04;
}

.contact-faq-list {
  display: grid;
  gap: 16px;
}

.contact-faq-list article {
  padding: 24px 28px;
  border: 1px solid #cfe0f4;
  border-radius: var(--radius);
  background: #ffffff;
}

.contact-faq-list h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
}

.contact-faq-list p {
  margin: 10px 0 0;
  color: #536275;
  font-size: 17px;
}

.profile-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.profile-panel img {
  width: 150px;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--white);
}

.profile-panel dl,
.values-card dl {
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.profile-panel dl div,
.values-card dl div {
  display: grid;
  gap: 3px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.profile-panel dt,
.values-card dt {
  color: #a7f3d0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-panel dd,
.values-card dd {
  margin: 0;
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
}

.about-overview {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 6%, rgba(37, 99, 235, 0.11), transparent 24%),
    radial-gradient(circle at 92% 78%, rgba(8, 145, 178, 0.15), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.about-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, rgba(37, 99, 235, 0.032) 1px, transparent 1px);
  background-size: 86px 86px;
}

.overview-panel {
  position: relative;
  display: grid;
  gap: 38px;
}

.overview-heading {
  max-width: none;
}

.overview-heading h2 {
  font-size: clamp(38px, 4.1vw, 64px);
}

.overview-heading h2,
.section-heading h2,
.values-layout h2,
.cta-panel h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.04;
}

.overview-heading p:not(.eyebrow) {
  max-width: none;
  margin: 18px 0 0;
  color: #4b5b70;
  font-size: 18px;
}

@media (min-width: 1180px) {
  .overview-heading h2,
  .overview-heading p:not(.eyebrow),
  .about-services .section-heading h2,
  .about-services .section-heading p:not(.eyebrow),
  .conduct-section .section-heading h2,
  .about-cta h2,
  .about-cta p:not(.eyebrow) {
    white-space: nowrap;
  }

  .values-layout h2 {
    font-size: clamp(36px, 3.2vw, 48px);
  }

  .about-cta {
    overflow: hidden;
  }

  .cta-panel {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

.overview-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 30px;
  align-items: stretch;
}

.editorial-copy {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 36px 38px;
  overflow: hidden;
  border: 1px solid rgba(133, 164, 208, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.08) 0 6px, transparent 6px),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.section-line {
  width: 140px;
  height: 4px;
  display: block;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
}

.editorial-copy p {
  margin: 0;
  color: #4b5b70;
  font-size: 18px;
}

.overview-signals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.overview-signals div {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 16px;
  row-gap: 4px;
  min-height: 104px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(133, 164, 208, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.78));
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.overview-signals div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
}

.overview-signals span {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.overview-signals small {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.overview-signals strong {
  color: #172033;
  font-size: 17px;
  line-height: 1.25;
}

.about-services {
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
  background-size:
    86px 86px,
    auto;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 36px;
}

.review-heading {
  max-width: min(100%, 1320px);
}

.review-heading h2 {
  max-width: 100%;
  overflow-wrap: normal;
  text-wrap: balance;
  white-space: normal;
  font-size: clamp(36px, 5vw, 72px);
}

.about-services .section-heading,
.conduct-section .section-heading {
  max-width: none;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: #5f6b7a;
  font-size: 18px;
}

.about-services .section-heading p:not(.eyebrow),
.conduct-section .section-heading p:not(.eyebrow) {
  max-width: none;
}

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

.service-cluster article,
.conduct-grid article,
.values-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(133, 164, 208, 0.5);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.service-cluster article {
  padding: 26px;
}

.service-cluster article::before,
.conduct-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.service-cluster span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50%;
  background: #eff6ff;
  font-size: 13px;
  font-weight: 900;
}

.service-cluster h3,
.conduct-grid h3,
.values-card h3 {
  margin: 20px 0 12px;
  color: #111827;
  font-size: 22px;
  line-height: 1.16;
}

.service-cluster ul {
  margin: 0;
  padding-left: 18px;
  color: #4b5b70;
}

.service-cluster li + li {
  margin-top: 8px;
}

.company-values {
  background: #0f172a;
}

.values-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  align-items: stretch;
}

.values-layout > div:first-child {
  min-width: 0;
}

.values-layout h2,
.values-layout p,
.about-cta h2,
.about-cta p {
  color: var(--white);
}

.values-layout h2 {
  max-width: 760px;
}

.values-layout p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #cbd5e1;
  font-size: 18px;
}

.values-card {
  padding: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(8, 145, 178, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.values-card h3 {
  margin-top: 0;
  color: var(--white);
}

.values-card dl div {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.values-card dd {
  color: #e5efff;
  font-weight: 700;
}

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

.conduct-grid article {
  padding: 24px;
}

.conduct-grid h3 {
  margin-top: 8px;
  font-size: 19px;
}

.conduct-grid p {
  margin: 0;
  color: #526174;
  font-size: 15px;
}

.about-cta {
  background:
    radial-gradient(circle at 84% 0, rgba(8, 145, 178, 0.16), transparent 30%),
    linear-gradient(135deg, #123c8c, #0f172a);
}

.cta-panel {
  display: grid;
  gap: 28px;
}

.cta-panel p:not(.eyebrow) {
  max-width: none;
  margin: 16px 0 0;
  color: #dbeafe;
  font-size: 18px;
}

.about-cta .contact-form {
  width: 100%;
  height: 100%;
  justify-self: stretch;
  margin-top: 0;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
}

.about-cta .form-row + .form-field {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  margin-bottom: 20px;
}

.about-cta .form-row + .form-field textarea {
  height: 100%;
  min-height: 150px;
}

.about-cta .form-status {
  min-height: 0;
  margin-top: 8px;
}

.cta-form-media {
  display: grid;
  grid-template-columns: minmax(420px, 520px) minmax(0, 520px);
  gap: 56px;
  align-items: stretch;
  justify-self: start;
  width: min(100%, 1084px);
  max-width: 1084px;
}

.about-cta .contact-btn {
  margin-top: 0;
}

.about-cta .contact-form,
.cta-form-image {
  height: 430px;
}

.cta-form-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.28);
}

.cta-form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.reviews-hero {
  background:
    radial-gradient(circle at 78% 34%, rgba(245, 158, 11, 0.26), transparent 20%),
    radial-gradient(circle at 86% 70%, rgba(8, 145, 178, 0.28), transparent 24%),
    radial-gradient(circle at 18% 12%, rgba(37, 99, 235, 0.28), transparent 28%),
    linear-gradient(118deg, #071321 0%, #10285f 48%, #0b3d62 72%, #071321 100%);
}

.reviews-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 78% 42%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px);
  background-size: 86px 86px, 86px 86px, 34px 34px;
  opacity: 0.28;
}

.reviews-hero::after {
  content: "";
  position: absolute;
  right: max(20px, calc((100vw - var(--container)) / 2));
  bottom: 54px;
  width: min(45vw, 560px);
  height: 260px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(141, 227, 237, 0.3), transparent 72%) 8% 26% / 78% 1px no-repeat,
    linear-gradient(90deg, rgba(245, 158, 11, 0.42), transparent 62%) 22% 50% / 68% 1px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 70%) 3% 75% / 84% 1px no-repeat,
    radial-gradient(circle at 8% 26%, rgba(141, 227, 237, 0.95) 0 3px, transparent 4px),
    radial-gradient(circle at 22% 50%, rgba(245, 158, 11, 0.95) 0 3px, transparent 4px),
    radial-gradient(circle at 3% 75%, rgba(255, 255, 255, 0.72) 0 3px, transparent 4px);
  opacity: 0.72;
}

.reviews-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  align-items: center;
  gap: 58px;
  padding: 86px 0;
}

.reviews-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 0.98;
}

.reviews-hero p:not(.eyebrow) {
  max-width: 860px;
  margin: 24px 0 0;
  color: #dbeafe;
  font-size: 20px;
}

.reviews-hero-visual {
  position: relative;
  min-height: 320px;
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 18px;
}

.reviews-hero-visual::before {
  content: "“";
  position: absolute;
  top: -52px;
  right: 24px;
  color: rgba(255, 255, 255, 0.08);
  font-family: Georgia, serif;
  font-size: 260px;
  line-height: 1;
}

.reviews-hero-visual::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 24px;
  width: min(100%, 420px);
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 68%);
  filter: blur(6px);
}

.hero-stars {
  position: relative;
  z-index: 1;
  color: #fbbf24;
  font-size: clamp(58px, 7.2vw, 106px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-shadow:
    0 0 20px rgba(245, 158, 11, 0.44),
    0 18px 46px rgba(2, 6, 23, 0.36);
  white-space: nowrap;
}

.hero-review-count {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: #ffffff;
  text-align: right;
}

.hero-review-count strong {
  color: #ffffff;
  font-size: clamp(52px, 6vw, 82px);
  line-height: 0.9;
}

.hero-review-count span {
  max-width: 150px;
  color: #bfe8f2;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.reviews-page-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.08), transparent 24%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    #f8fbff;
  background-size: auto, 86px 86px, 86px 86px, auto;
}

.reviews-page-heading {
  max-width: none;
}

.reviews-page-heading h2 {
  max-width: 1120px;
  font-size: clamp(38px, 5vw, 64px);
}

.reviews-page-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.reviews-page-card {
  min-height: 424px;
  grid-template-rows: 88px auto auto 1fr;
}

.review-logo-fallback {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-color: rgba(37, 99, 235, 0.22);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.review-read-more {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-weight: 850;
  line-height: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(37, 99, 235, 0.3);
  text-underline-offset: 3px;
}

.review-read-more:hover,
.review-read-more:focus-visible {
  color: var(--blue-dark);
  text-decoration-color: currentColor;
  outline: none;
}

.review-modal[hidden] {
  display: none;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.76);
  backdrop-filter: blur(3px);
}

.review-modal-dialog {
  position: relative;
  width: min(960px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  display: grid;
  justify-items: center;
  padding: clamp(34px, 6vw, 72px) clamp(28px, 6vw, 64px) clamp(32px, 5vw, 56px);
  border-radius: 0;
  background: #ffffff;
  color: #374151;
  text-align: center;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
}

.review-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #777;
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
}

.review-modal-close:hover,
.review-modal-close:focus-visible {
  color: #111827;
  outline: none;
}

.review-modal-logo {
  min-height: 170px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
}

.review-modal-logo img {
  max-width: min(320px, 62vw);
  max-height: 150px;
  object-fit: contain;
}

.review-modal-logo .review-logo-fallback {
  width: 144px;
  height: 144px;
  font-size: 32px;
}

.review-modal-text {
  max-width: 830px;
  margin: 0;
  color: #444;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.55;
}

.review-modal-person {
  margin: 18px 0 12px;
  color: #888;
  font-size: 22px;
  font-style: italic;
}

.review-modal-stars {
  margin-top: 2px;
  color: #f5a400;
  font-size: 24px;
}

.review-modal-company,
.review-modal-url {
  display: inline-flex;
  margin-top: 12px;
  color: #0969d6;
  font-size: 22px;
  line-height: 1.25;
  text-decoration: none;
}

.review-modal-url {
  margin-top: 6px;
  font-size: 19px;
}

.review-modal-company:hover,
.review-modal-url:hover {
  text-decoration: underline;
}

body.is-review-modal-open {
  overflow: hidden;
}

.site-footer {
  color: #dbe7f7;
  background: #020a11;
  border-top: 1px solid rgba(141, 227, 237, 0.18);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 42px 0 26px;
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
}

.footer-logo {
  display: block;
  width: 108px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
  min-width: 0;
  line-height: 1.4;
}

.footer-info .company {
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
}

.footer-info .address {
  margin-top: 2px;
  color: #8aa0b4;
  font-size: 15px;
}

.footer-phone {
  margin-left: auto;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.footer-phone:hover {
  color: #8de3ed;
}

.footer-links {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 44px;
}

.footer-links h2 {
  margin: 0 0 14px;
  color: #8de3ed;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #9bb1bf;
  font-size: 15px;
  font-weight: 650;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  color: #71899a;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .reviews-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-hero-grid {
    grid-template-columns: 1fr;
  }

  .reviews-hero-visual {
    max-width: 560px;
    justify-items: start;
  }

  .reviews-hero::after {
    left: 20px;
    right: auto;
    width: min(82vw, 560px);
  }
}

@media (max-width: 1100px) {
  .utility-nav {
    gap: 12px;
  }

  .primary-nav > a,
  .nav-dropdown > button {
    padding: 0 7px;
    font-size: 12px;
    white-space: nowrap;
  }

  .service-grid,
  .review-grid,
  .service-cluster,
  .conduct-grid,
  .contact-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .container,
  .utility-bar,
  .main-header,
  .primary-nav,
  .hero-inner {
    width: min(100% - 28px, var(--container));
  }

  .section-pad {
    padding: var(--section-y-mobile) 0;
  }

  .intro-section {
    padding-bottom: 0;
  }

  .utility-bar {
    display: none;
  }

  .main-header {
    min-height: 74px;
  }

  .brand img {
    width: 78px;
  }

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

  .brand small,
  .phone-link {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    display: none;
    width: 100%;
    padding: 8px 14px 18px;
    border-top: 1px solid var(--line);
    background: var(--white);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav > a,
  .nav-dropdown > button {
    width: 100%;
    justify-content: space-between;
    height: auto;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    white-space: normal;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    box-shadow: none;
    border: 0;
    padding: 4px 0 8px 12px;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: grid;
  }

  .hero {
    min-height: 670px;
  }

  section[id],
  .feature-quote[id],
  a[id] {
    scroll-margin-top: 86px;
  }

  .hero-image {
    background:
      linear-gradient(180deg, rgba(7, 19, 33, 0.98) 0%, rgba(7, 19, 33, 0.94) 48%, rgba(7, 19, 33, 0.62) 100%),
      url("assets/hero-onsite-remote-support.svg") 64% center / cover no-repeat;
  }

  .hero-inner {
    padding: 70px 0 120px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-metrics {
    gap: 10px;
  }

  .hero-metrics div {
    min-width: calc(50% - 5px);
  }

  .intro-grid,
  .contact-hero-grid,
  .contact-page-layout,
  .contact-faq-layout,
  .page-hero-grid,
  .legal-layout,
  .overview-body,
  .support-detail,
  .split-layout,
  .split-layout.reverse,
  .privacy-form-panel,
  .contact-grid,
  .values-layout {
    grid-template-columns: 1fr;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-phone {
    margin-left: 0;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .page-hero-grid {
    min-height: auto;
    gap: 30px;
    padding: 64px 0;
  }

  .legal-hero-grid {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    padding-left: 22px;
  }

  .legal-summary::after {
    width: 70%;
  }

  .policy-toc {
    position: static;
  }

  .privacy-form-panel {
    gap: 28px;
  }

  .contact-hero-grid {
    min-height: auto;
    gap: 32px;
    padding: 64px 0;
  }

  .contact-hero h1 {
    font-size: 44px;
  }

  .contact-hero-actions {
    padding-left: 22px;
  }

  .contact-page-layout,
  .contact-faq-layout {
    gap: 30px;
  }

  .privacy-contact-form {
    width: 100%;
  }

  .about-hero {
    background:
      linear-gradient(180deg, rgba(7, 19, 33, 0.98) 0%, rgba(12, 36, 78, 0.92) 58%, rgba(8, 145, 178, 0.62) 100%),
      url("assets/about-it-solutions-hero.svg") 70% 82% / 720px auto no-repeat,
      linear-gradient(135deg, #0b1324 0%, #123c8c 58%, #0891b2 100%);
  }

  .page-hero p:not(.eyebrow),
  .policy-section p,
  .overview-heading p:not(.eyebrow),
  .editorial-copy p,
  .values-layout p,
  .section-heading p:not(.eyebrow),
  .cta-panel p:not(.eyebrow) {
    font-size: 17px;
  }

  .editorial-copy {
    padding: 26px;
  }

  .cta-panel {
    display: grid;
    justify-items: start;
  }

  .cta-form-media {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .cta-form-image {
    height: 260px;
  }

  .about-cta .contact-form {
    height: auto;
  }

  .support-layout {
    gap: 30px;
  }

  .support-detail {
    gap: 30px;
  }

  .split-layout.reverse > :first-child {
    order: 0;
  }

  .photo-panel img {
    height: 420px;
  }

  .support-focus .photo-panel {
    height: auto;
  }

  .support-focus .photo-panel img {
    height: 420px;
  }

  .review-heading h2 {
    white-space: normal;
  }

  .feature-quote {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: var(--section-y-mobile);
  }

  .feature-source {
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid rgba(37, 99, 235, 0.2);
  }

  .support-points div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

}

@media (max-width: 620px) {
  .reviews-hero-grid {
    min-height: auto;
    padding: 64px 0;
  }

  .reviews-hero h1 {
    font-size: 40px;
  }

  .reviews-hero-visual {
    min-height: 190px;
    justify-items: start;
  }

  .hero-stars {
    font-size: clamp(42px, 14vw, 58px);
  }

  .hero-review-count {
    text-align: left;
  }

  .reviews-hero::after {
    bottom: 28px;
    height: 160px;
  }

  .reviews-page-grid {
    grid-template-columns: 1fr;
  }

  .reviews-page-card {
    min-height: 0;
  }

  .review-modal {
    padding: 16px;
  }

  .review-modal-dialog {
    width: calc(100vw - 24px);
  }

  .review-modal-logo {
    min-height: 120px;
    margin-bottom: 18px;
  }

  .review-modal-company,
  .review-modal-url {
    font-size: 18px;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 760px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-metrics {
    display: grid;
  }

  .hero-metrics div {
    min-width: 0;
  }

  .intro-grid article,
  .service-card,
  .review-card,
  .contact-form {
    padding: 22px;
  }

  .service-grid,
  .review-grid,
  .more-services-list,
  .service-cluster,
  .conduct-grid,
  .contact-support-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .profile-panel,
  .editorial-copy,
  .service-cluster article,
  .conduct-grid article,
  .values-card {
    padding: 22px;
  }

  .overview-signals div {
    grid-template-columns: 48px 1fr;
    min-height: 82px;
    padding: 16px;
  }

  .overview-signals span {
    width: 48px;
    height: 48px;
    font-size: 15px;
  }

  .feature-quote {
    padding: 24px;
  }

  .feature-stars {
    font-size: 16px;
  }

  .feature-quote-mark {
    width: 52px;
    height: 52px;
    font-size: 40px;
  }

  .feature-quote p {
    font-size: 17px;
    line-height: 1.55;
  }

  .feature-source cite {
    font-size: 17px;
  }

  .photo-panel img {
    height: 360px;
  }

  .support-focus .photo-panel img {
    height: 360px;
  }

}
