@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:wght@500;600;700&family=Noto+Serif+SC:wght@500;600;700&display=swap');

:root {
  /* Warm natural palette */
  --bg: #FDFBF7;
  --bg-warm: #F7F2EA;
  --surface: #FFFFFF;
  --surface-warm: #F5EFE6;
  --surface-tint: #F9F5EE;

  --text: #2C2416;
  --text-secondary: #6B5E4F;
  --text-muted: #9A8B7A;
  --text-on-dark: #F8F5F0;

  --brand: #8B5A2B;
  --brand-deep: #5C3A1A;
  --brand-soft: #F3E6D3;
  --brand-light: #FAF3EA;

  --accent: #5E7D5A;
  --accent-soft: #E8F0E6;
  --accent-deep: #3E5A3B;

  --wa: #25D366;
  --tg: #229ED9;

  --border: #E8E0D4;
  --border-light: #F0EAE0;

  --shadow-sm: 0 1px 3px rgba(44, 36, 22, 0.06);
  --shadow: 0 4px 16px rgba(44, 36, 22, 0.08);
  --shadow-md: 0 8px 28px rgba(44, 36, 22, 0.12);
  --shadow-lg: 0 16px 48px rgba(44, 36, 22, 0.14);

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --space-xs: 0.375rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --space-2xl: 6rem;

  --font-display: "Playfair Display", "Noto Serif SC", "Songti SC", "SimSun", Georgia, serif;
  --font-body: "Inter", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

input, textarea, button {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-tint {
  background: var(--surface-tint);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* Typography */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brand-deep);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--brand-deep);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

h4 {
  font-size: 1.05rem;
}

p {
  color: var(--text-secondary);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--space-sm);
}

.kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.section-head {
  max-width: 620px;
  margin-bottom: var(--space-xl);
}

.section-head h2 {
  margin-bottom: var(--space-sm);
}

.section-head p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-deep);
  white-space: nowrap;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--brand);
  display: grid;
  place-items: center;
  color: var(--brand-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a {
  color: var(--text-secondary);
  transition: color 0.2s var(--ease-out);
  position: relative;
}

.nav a:hover,
.nav a:focus {
  color: var(--brand);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.2s var(--ease-out);
  border-radius: 2px;
}

.nav a:hover::after,
.nav a:focus::after {
  width: 100%;
}

.lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.lang a {
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  border: 1px solid transparent;
  transition: all 0.2s var(--ease-out);
}

.lang a:hover {
  color: var(--brand);
  border-color: var(--border);
}

.lang a.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--brand-deep);
  font-size: 1.5rem;
  border-radius: var(--radius-sm);
}

.nav-toggle:hover {
  background: var(--surface-warm);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out), background 0.15s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(139, 90, 43, 0.28);
}

.btn-primary:hover {
  background: var(--brand-deep);
  box-shadow: 0 6px 18px rgba(139, 90, 43, 0.35);
}

.btn-secondary {
  background: var(--surface);
  color: var(--brand-deep);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--brand-light);
  border-color: var(--brand-soft);
}

.btn-wa {
  background: #0F7A65;
  color: #fff;
  box-shadow: 0 4px 14px rgba(15, 122, 101, 0.28);
}

.btn-wa:hover {
  background: #0D6B58;
  box-shadow: 0 6px 18px rgba(15, 122, 101, 0.35);
}

.btn-sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg) 60%);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(139, 90, 43, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-2xl) 0;
}

.hero-content {
  max-width: 560px;
}

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  max-height: 560px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Trust band */
.trust-band {
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
  padding: var(--space-lg) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
}

.trust-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--brand-deep);
  font-weight: 600;
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-icon {
  min-width: 44px;
  width: auto;
  height: 44px;
  padding: 0 10px;
  border-radius: var(--radius);
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Feature cards */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-sm);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Products */
.prod-cat {
  margin-bottom: var(--space-xl);
}

.prod-cat-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.prod-cat-header h3 {
  color: var(--brand-deep);
}

.prod-cat-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--surface-warm);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.plink {
  display: block;
}

.pcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.plink:hover .pcard {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pcard .imgbox {
  aspect-ratio: 4/3;
  position: relative;
  background: var(--surface-warm);
  overflow: hidden;
}

.pcard .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}

.plink:hover .pcard .imgbox img {
  transform: scale(1.04);
}

.photo-tag {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: rgba(245, 239, 230, 0.6);
  text-transform: uppercase;
}

.pcard .meta {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.pcard .name {
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.pcard .size {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pcard .moq {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-deep);
  background: var(--accent-soft);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  margin-top: auto;
  padding-top: 0.35rem;
}

/* Cooperation */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  counter-reset: step;
}

.process-item {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.process-item::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-soft);
  line-height: 1;
}

.process-item h4 {
  margin-bottom: 0.5rem;
  padding-right: 2.5rem;
}

.process-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.coop-note {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: var(--surface-warm);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Compliance */
.strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.chip-accent {
  background: var(--brand-light);
  border-color: var(--brand-soft);
  color: var(--brand-deep);
  font-weight: 500;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: start;
}

.c-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.c-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.c-item .ic {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.c-item b {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.c-item span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  word-break: break-word;
}

form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

input, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

input:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: -0.25rem;
}

/* Footer */
.site-footer {
  background: var(--brand-deep);
  color: var(--text-on-dark);
  padding: var(--space-xl) 0;
}

.foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: space-between;
  align-items: center;
}

.site-footer p,
.site-footer a {
  color: rgba(248, 245, 240, 0.8);
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: #fff;
}

.foot-lang {
  display: flex;
  gap: var(--space-sm);
}

/* Product detail */
.breadcrumb {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.breadcrumb a {
  color: var(--brand);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 0.4rem;
  color: var(--border);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.gallery-main {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-warm);
  box-shadow: var(--shadow);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ph-badge {
  position: absolute;
  left: var(--space-sm);
  bottom: var(--space-sm);
  background: rgba(44, 36, 22, 0.75);
  color: var(--text-on-dark);
  font-size: 0.75rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  display: none;
}

.gal-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-deep);
  font-size: 1.4rem;
  line-height: 1;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  transition: background 0.15s;
}

.gal-btn:hover {
  background: #fff;
}

.gal-prev { left: var(--space-sm); }
.gal-next { right: var(--space-sm); }

.gal-count {
  position: absolute;
  bottom: var(--space-sm);
  right: var(--space-sm);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-deep);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
}

.thumbs {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.thumb {
  width: 72px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--surface-warm);
  padding: 0;
  cursor: pointer;
  transition: border-color 0.15s;
}

.thumb.active {
  border-color: var(--brand);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dinfo h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0.5rem 0 0.75rem;
}

.d-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-md);
}

.spec-table th,
.spec-table td {
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0.5rem;
  font-size: 0.95rem;
  text-align: left;
}

.spec-table th {
  color: var(--text-muted);
  font-weight: 500;
  width: 38%;
}

.sizes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sizes-list li {
  padding: 0.2rem 0;
  font-size: 0.95rem;
}

.sizes-list li::before {
  content: "•";
  color: var(--brand);
  margin-right: 0.5rem;
}

.d-price {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand-deep);
  margin-bottom: var(--space-md);
}

.d-custom {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: var(--space-md);
  background: var(--surface-warm);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  border-left: 3px solid var(--accent);
}

.variant-box {
  margin-bottom: var(--space-md);
}

.variant-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.variant-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem 0.4rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--surface);
  font-size: 0.88rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s var(--ease-out);
}

.variant-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.variant-btn.active {
  border-color: var(--brand);
  background: var(--brand-light);
  color: var(--brand-deep);
}

.variant-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(44, 36, 22, 0.12);
  flex-shrink: 0;
}

.variant-swatch.dual {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.variant-swatch.dual::before,
.variant-swatch.dual::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
}

.variant-swatch.dual::before {
  left: 0;
  background: var(--c1);
}

.variant-swatch.dual::after {
  right: 0;
  background: var(--c2);
}

.d-related-title {
  margin-bottom: var(--space-md);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-sm);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.6rem 0;
    width: 100%;
  }

  .nav a::after {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: var(--space-xl) 0;
  }

  .hero-visual {
    order: -1;
    max-height: 360px;
    aspect-ratio: 16/9;
  }

  .trust-grid,
  .features,
  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --space-2xl: 4rem;
    --space-xl: 2.5rem;
  }

  .header-inner {
    height: 64px;
  }

  .logo span {
    font-size: 0.95rem;
  }

  .lang {
    display: none;
  }

  .hero p {
    font-size: 1rem;
  }

  .trust-grid,
  .features,
  .process,
  .grid3 {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .process-item::before {
    font-size: 1.25rem;
  }

  .foot-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
