:root {
  --color-primary: #1E3A5F;
  --color-secondary: #4A6FA5;
  --color-accent: #FF6B35;
  --color-bg: #FFFFFF;
  --color-soft: #F8F9FA;
  --color-line: #DDE6EF;
  --color-text: #2C3E50;
  --color-muted: #5A6C7D;
  --color-white: #FFFFFF;
  --shadow-sm: 0 8px 24px rgba(30, 58, 95, 0.08);
  --shadow-md: 0 18px 44px rgba(30, 58, 95, 0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --container: 1180px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--color-soft);
}

.section-dark {
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(30, 58, 95, 0.96), rgba(30, 58, 95, 0.88)),
    radial-gradient(circle at 85% 20%, rgba(255, 107, 53, 0.25), transparent 28%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 700;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::after {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.section-head h1,
.section-head h2,
.page-hero h1,
.hero-copy h1 {
  margin: 0;
  color: var(--color-primary);
  font-weight: 800;
  line-height: 1.12;
}

.hero-copy h1 {
  color: var(--color-white);
  font-size: 64px;
}

.page-hero h1 {
  color: var(--color-white);
  font-size: 48px;
}

.section-head h2 {
  font-size: 44px;
}

.section-head p,
.page-hero p,
.hero-copy p {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 18px;
}

.page-hero p,
.hero-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
}

.company-identity {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.company-identity strong,
.company-legal-name strong {
  color: var(--color-primary);
  font-weight: 800;
}

.company-identity span:not(.identity-label),
.company-legal-name span,
.company-en {
  overflow-wrap: anywhere;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
}

.identity-label {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0 22px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn-primary {
  color: var(--color-white);
  background: var(--color-accent);
  box-shadow: 0 12px 28px rgba(255, 107, 53, 0.28);
}

.btn-primary:hover {
  background: #e85c2a;
}

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

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

.btn-outline {
  color: var(--color-primary);
  border-color: var(--color-line);
  background: var(--color-white);
}

.btn-outline:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-weight: 700;
}

.link-arrow::after {
  content: "->";
  transition: transform 180ms var(--ease);
}

.link-arrow:hover::after {
  transform: translateX(3px);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  transition: background 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  border-bottom-color: rgba(30, 58, 95, 0.08);
  background: rgba(30, 58, 95, 0.97);
  box-shadow: 0 12px 30px rgba(17, 35, 57, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-accent), #ff9a72);
  font-weight: 900;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--color-white);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  content: "";
  background: currentColor;
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

body.nav-open .nav-toggle span {
  transform: rotate(45deg);
}

body.nav-open .nav-toggle span::before {
  opacity: 0;
}

body.nav-open .nav-toggle span::after {
  transform: translateY(-2px) rotate(-90deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
  background:
    linear-gradient(100deg, rgba(14, 31, 52, 0.94), rgba(30, 58, 95, 0.66), rgba(30, 58, 95, 0.28)),
    url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=2200&q=80") center / cover;
}

.hero::after {
  position: absolute;
  right: -160px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 96px;
}

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

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

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 780px);
  margin-top: 56px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-panel .metric {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.metric strong {
  display: block;
  color: var(--color-white);
  font-size: 32px;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.page-hero {
  position: relative;
  padding: 168px 0 92px;
  overflow: hidden;
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(30, 58, 95, 0.98), rgba(30, 58, 95, 0.78)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.page-hero::after {
  position: absolute;
  inset: auto -80px -160px auto;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

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

.breadcrumb {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.trust-strip {
  padding: 36px 0;
  border-bottom: 1px solid var(--color-line);
  background: var(--color-white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
}

.trust-item {
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  background: var(--color-white);
  text-align: center;
  font-weight: 800;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.logo-wall span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  color: var(--color-muted);
  background: var(--color-soft);
  font-size: 14px;
  font-weight: 700;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: minmax(210px, auto);
  gap: 18px;
}

.bento-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 28px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.bento-card:hover,
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 111, 165, 0.45);
  box-shadow: var(--shadow-md);
}

.bento-card.featured {
  grid-row: span 2;
  color: var(--color-white);
  background:
    linear-gradient(145deg, rgba(30, 58, 95, 0.96), rgba(74, 111, 165, 0.9)),
    url("https://images.unsplash.com/photo-1581092921461-eab62e97a780?auto=format&fit=crop&w=1000&q=80") center / cover;
}

.bento-card.featured h3,
.bento-card.featured p,
.bento-card.featured .card-number {
  color: var(--color-white);
}

.card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 14px;
  color: var(--color-white);
  background: var(--color-secondary);
  font-size: 13px;
  font-weight: 800;
}

.bento-card.featured .card-icon {
  background: var(--color-accent);
}

.card-number {
  display: block;
  margin-bottom: 10px;
  color: var(--color-accent);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.bento-card h3,
.card h3,
.module-card h3 {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 24px;
  line-height: 1.3;
}

.bento-card p,
.card p,
.module-card p {
  margin: 0;
  color: var(--color-muted);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

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

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

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

.card,
.module-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.card-body,
.module-card {
  padding: 28px;
}

.card-image {
  min-height: 210px;
  background: var(--color-soft) center / cover;
}

.image-mes {
  background-image: linear-gradient(rgba(30, 58, 95, 0.1), rgba(30, 58, 95, 0.1)), url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1000&q=80");
}

.image-oa {
  background-image: linear-gradient(rgba(30, 58, 95, 0.1), rgba(30, 58, 95, 0.1)), url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1000&q=80");
}

.image-case-1 {
  background-image: linear-gradient(rgba(30, 58, 95, 0.08), rgba(30, 58, 95, 0.08)), url("https://images.unsplash.com/photo-1565608087341-404b25492fee?auto=format&fit=crop&w=1000&q=80");
}

.image-case-2 {
  background-image: linear-gradient(rgba(30, 58, 95, 0.08), rgba(30, 58, 95, 0.08)), url("https://images.unsplash.com/photo-1565793298595-6a879b1d9492?auto=format&fit=crop&w=1000&q=80");
}

.image-case-3 {
  background-image: linear-gradient(rgba(30, 58, 95, 0.08), rgba(30, 58, 95, 0.08)), url("https://images.unsplash.com/photo-1581093458791-9d15482442f6?auto=format&fit=crop&w=1000&q=80");
}

.tag-list,
.feature-list,
.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li,
.feature-list li,
.case-tag {
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--color-primary);
  background: #edf3f8;
  font-size: 13px;
  font-weight: 700;
}

.feature-list {
  display: grid;
  gap: 10px;
}

.feature-list li {
  border-radius: var(--radius-sm);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

.result {
  color: var(--color-accent);
  font-size: 28px;
  font-weight: 900;
}

.process {
  counter-reset: step;
}

.process-card {
  position: relative;
  padding-top: 64px;
}

.process-card::before {
  position: absolute;
  top: 24px;
  left: 28px;
  color: rgba(74, 111, 165, 0.18);
  content: "0" counter(step);
  counter-increment: step;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.filter-label {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
}

.filter-btn {
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--color-muted);
  background: var(--color-white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: all 180ms var(--ease);
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: var(--color-accent);
  color: var(--color-white);
  background: var(--color-accent);
}

.case-card.is-hidden {
  display: none;
}

.empty-state {
  display: none;
  border: 1px dashed var(--color-line);
  border-radius: var(--radius-md);
  padding: 34px;
  color: var(--color-muted);
  background: var(--color-white);
  text-align: center;
}

.empty-state.is-visible {
  display: block;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: start;
}

.contact-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  color: var(--color-white);
  background: var(--color-secondary);
  font-size: 13px;
  font-weight: 900;
}

.contact-card h3 {
  margin: 0 0 6px;
  color: var(--color-primary);
  font-size: 18px;
}

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

.contact-card .company-en {
  margin-top: 3px;
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--color-primary);
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--color-text);
  background: var(--color-white);
  outline: none;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

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

.field input:focus,
.field textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(74, 111, 165, 0.12);
}

.field-error {
  min-height: 20px;
  color: #c84624;
  font-size: 13px;
}

.form-status {
  min-height: 26px;
  margin-top: 16px;
  color: var(--color-muted);
  font-weight: 700;
}

.form-status.is-success {
  color: #137a4b;
}

.map-box {
  min-height: 320px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  background:
    linear-gradient(90deg, rgba(74, 111, 165, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(74, 111, 165, 0.08) 1px, transparent 1px),
    #f4f7fb;
  background-size: 24px 24px;
  text-align: center;
  font-weight: 800;
}

.map-box.is-map-ready {
  display: block;
  color: var(--color-text);
  background: #f4f7fb;
  font-weight: 400;
  text-align: left;
}

.map-box.is-map-error {
  color: var(--color-accent);
}

.cta-band {
  padding: 52px;
  border-radius: var(--radius-lg);
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(30, 58, 95, 0.98), rgba(74, 111, 165, 0.92)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1400&q=80") center / cover;
}

.cta-band h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.24;
}

.cta-band p {
  max-width: 680px;
  margin: 12px 0 28px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--color-primary);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 34px;
  padding: 58px 0;
}

.footer-main h3,
.footer-main h4 {
  margin: 0 0 16px;
  color: var(--color-white);
}

.footer-main p,
.footer-main a {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-main .company-legal-name {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.footer-main .company-legal-name strong,
.footer-main .company-legal-name span {
  color: rgba(255, 255, 255, 0.9);
}

.footer-main .company-legal-name span {
  font-size: 13px;
}

.footer-main a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .header-actions .btn {
    display: none;
  }

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

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

  .bento-card.featured {
    grid-row: auto;
    grid-column: span 2;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    background: rgba(30, 58, 95, 0.98);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .page-hero h1,
  .section-head h2 {
    font-size: 38px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .trust-grid,
  .logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    padding-top: 96px;
  }

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

  .hero-copy p,
  .page-hero p,
  .section-head p {
    font-size: 16px;
  }

  .page-hero {
    padding: 136px 0 72px;
  }

  .page-hero h1,
  .section-head h2 {
    font-size: 32px;
  }

  .hero-actions,
  .card-footer,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-band .btn,
  .contact-form .btn {
    width: 100%;
  }

  .hero-panel,
  .trust-grid,
  .logo-wall,
  .bento-grid,
  .grid-4,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.featured {
    grid-column: auto;
  }

  .bento-card,
  .card-body,
  .module-card,
  .contact-form,
  .cta-band {
    padding: 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 44px 0;
  }
}
