@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');

/* ============================================================
   MARUTEN — Nature Distilled Theme
   Brand: #5cc6b0 (mint) | #d4c4a8 (sand) | #172623 (deep forest)
   ============================================================ */

/* ── 变量 ── */
:root {
  --mint:       #5cc6b0;
  --mint-dark:  #3ea896;
  --mint-light: #a8e6dc;
  --sand:       #d4c4a8;
  --sand-dark:  #b8a98a;
  --sand-light: #ece4d4;
  --forest:     #172623;
  --forest-mid: #254038;
  --forest-light:#3a5c53;
  --bg:         #f5f0e8;
  --bg-warm:    #ede6d8;
  --surface:    rgba(255,255,255,0.55);
  --surface-border: rgba(255,255,255,0.72);
  --text:       #1e2e2b;
  --text-mid:   #3d5450;
  --text-muted: #7a8e8a;
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  18px;
  --radius-xl:  28px;
  --shadow-soft: 0 4px 20px rgba(23,38,35,0.10), 0 1px 4px rgba(23,38,35,0.06);
  --shadow-card: 0 8px 32px rgba(23,38,35,0.10), 0 2px 8px rgba(23,38,35,0.06);
  --font: 'Plus Jakarta Sans', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --max-w: 1140px;
  --content-w: 780px;
}

/* ── 重置 ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--mint-dark); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--forest); }
ul, ol { padding-left: 1.4em; }
p { margin-bottom: 1em; }

/* ── 纹理粒子叠层 ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.6;
}

/* ── 顶栏 header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,240,232,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sand);
  box-shadow: 0 2px 12px rgba(23,38,35,0.07);
}

.header-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  gap: 1rem;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-name {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.brand-name:hover { color: var(--mint-dark); }

.header-contact-entry a {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  min-height: 40px;
  background: var(--mint);
  color: var(--forest);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  transition: background 0.2s ease, transform 0.15s ease;
}
.header-contact-entry a:hover {
  background: var(--mint-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* 导航行 — nav > p > a 结构 */
.header-nav-row {
  border-top: 1px solid rgba(212,196,168,0.4);
  background: rgba(237,230,216,0.6);
}

.main-nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.main-nav p {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
}

.main-nav p a {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1rem;
  min-height: 44px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  border-right: 1px solid rgba(212,196,168,0.35);
  transition: background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.main-nav p a:first-child { border-left: 1px solid rgba(212,196,168,0.35); }
.main-nav p a:hover {
  background: var(--sand-light);
  color: var(--forest);
}

/* ── Hero 首页 ── */
.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 55%, var(--forest-light) 100%);
  overflow: hidden;
  padding: 5rem 1.5rem 8rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: -5%;
  right: -5%;
  height: 120px;
  background: var(--bg);
  transform: skewY(-3deg);
  transform-origin: top left;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
  max-width: 700px;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-slope { display: none; }

/* ── Hero 内页 ── */
.page-hero-section {
  position: relative;
  background:
    linear-gradient(150deg, var(--forest) 0%, var(--forest-mid) 60%, var(--forest-light) 100%);
  padding: 3.5rem 1.5rem 6rem;
  overflow: hidden;
}

.page-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero-section::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: -5%;
  right: -5%;
  height: 80px;
  background: var(--bg);
  transform: skewY(-2.5deg);
  transform-origin: top left;
}

.page-hero-slim { padding: 2.5rem 1.5rem 5rem; }

.page-hero-about {
  background:
    linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 50%, #3a6659 100%);
}

.faq-hero {
  background:
    linear-gradient(150deg, #1e3530 0%, var(--forest) 50%, var(--forest-mid) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero-content h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  max-width: 700px;
}

.page-hero-content .hero-desc {
  color: rgba(255,255,255,0.80);
  max-width: 540px;
  margin-bottom: 0.75rem;
}

/* ── 面包屑 ── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--mint-light); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* 日期行 */
.date-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  margin-top: 0.5rem;
}
.pub-date, .mod-date {
  color: rgba(255,255,255,0.55);
  font-style: normal;
}

/* ── 布局：内容区 ── */
.content-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.content-with-aside {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}

.main-content { min-width: 0; }

/* ── prose ── */
.prose {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}
.prose h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest);
  margin: 2rem 0 0.5rem;
}
.prose h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest-mid);
  margin: 1.5rem 0 0.4rem;
}
.prose h2 + hr, .prose h3 + hr {
  border: none;
  border-top: 2px solid var(--sand);
  margin: 0.25rem 0 1rem;
}
.prose hr {
  border: none;
  border-top: 1px solid var(--sand);
  margin: 1.5rem 0;
}
.prose ul, .prose ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}
.prose li { margin-bottom: 0.3em; }
.prose strong { font-weight: 700; color: var(--forest); }
.prose a { color: var(--mint-dark); font-weight: 500; }
.prose a:hover { color: var(--forest); }
.prose blockquote {
  border-left: 4px solid var(--mint);
  padding: 0.75rem 1.2rem;
  margin: 1.5rem 0;
  background: var(--sand-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-mid);
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.prose th, .prose td {
  text-align: left;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--sand);
}
.prose th { background: var(--sand-light); font-weight: 600; color: var(--forest); }

/* ── h2/h3 后 hr（同级） ── */
h2 + hr {
  border: none;
  border-top: 2px solid var(--mint);
  margin: 0.3rem 0 1.5rem;
}
h3 + hr {
  border: none;
  border-top: 1px solid var(--sand);
  margin: 0.2rem 0 1rem;
}

/* ── aside ── */
.content-aside {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.aside-block {
  background: var(--surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.aside-block h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

.aside-block ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}
.aside-block ul li { margin-bottom: 0.4rem; }
.aside-block ul li a {
  font-size: 0.88rem;
  color: var(--text-mid);
  display: block;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(212,196,168,0.3);
  transition: color 0.18s, padding-left 0.18s;
}
.aside-block ul li a:hover {
  color: var(--mint-dark);
  padding-left: 0.4rem;
}
.aside-block p {
  font-size: 0.87rem;
  color: var(--text-mid);
  margin: 0.5rem 0 0;
  line-height: 1.6;
}
.aside-block p a { color: var(--mint-dark); font-weight: 500; }

/* ── 玻璃卡片 ── */
.glass-card {
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}
.glass-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(23,38,35,0.13), 0 3px 10px rgba(23,38,35,0.08);
}

.card-inner {
  padding: 1.4rem 1.5rem;
}

.card-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: rgba(92,198,176,0.12);
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.6rem;
}

.card-inner h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.card-inner h3 a {
  color: inherit;
}
.card-inner h3 a:hover { color: var(--mint-dark); }

.card-inner p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.card-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mint-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.18s ease;
}
.card-link:hover { gap: 0.5rem; color: var(--forest); }

/* ── 卡片网格 ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.cards-grid-sm {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

/* ── 区段通用 ── */
.featured-section,
.sub-pages-area {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.featured-section h2,
.sub-pages-area h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
}

/* ── CTA 区块 ── */
.cta-section {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  margin-top: 2rem;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}
.cta-inner p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 1.5rem;
}
.cta-inner .btn-primary { margin-right: 0.75rem; }

/* ── 按钮 ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  min-height: 44px;
  background: var(--mint);
  color: var(--forest);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(92,198,176,0.3);
}
.btn-primary:hover {
  background: var(--mint-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92,198,176,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  min-height: 44px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
  color: #fff;
}

.btn-block { width: 100%; display: flex; }

/* ── FAQ prose ── */
.faq-prose h2, .faq-prose h3 { color: var(--forest); }

/* ── about 价值观行 ── */
.about-values { margin-top: 2.5rem; }
.values-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--mint), var(--mint-dark));
  color: var(--forest);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

/* ── 联系表单 ── */
.contact-form-area { margin-top: 2.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.7);
  color: var(--text);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(92,198,176,0.18);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ── cases DL ── */
.cases-dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.cases-dl dt {
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 0 0.25rem;
  border-top: 1px solid var(--sand);
  color: var(--forest);
}
.cases-dl dt a {
  color: var(--forest);
  font-weight: 700;
}
.cases-dl dt a:hover { color: var(--mint-dark); }
.cases-dl dd {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 0 0 0.85rem 0;
  margin: 0;
  line-height: 1.6;
}
.dl-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

/* ── 页脚 ── */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,0.75);
  padding: 2.5rem 1.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-brand-super {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.5rem;
  user-select: none;
  pointer-events: none;
}

.footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-row address {
  font-style: normal;
  font-size: 0.88rem;
}
.footer-bottom-row address a {
  color: rgba(255,255,255,0.65);
  transition: color 0.18s;
}
.footer-bottom-row address a:hover { color: var(--mint); }

.footer-bottom-row ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  margin: 0;
}
.footer-bottom-row ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  transition: color 0.18s;
}
.footer-bottom-row ul li a:hover { color: var(--mint); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ── 动效：stagger list（减少动效模式已关闭） ── */
@media (prefers-reduced-motion: no-preference) {
  .cards-grid .glass-card {
    animation: cardFadeUp 0.5s ease-out both;
  }
  .cards-grid .glass-card:nth-child(1) { animation-delay: 0.05s; }
  .cards-grid .glass-card:nth-child(2) { animation-delay: 0.12s; }
  .cards-grid .glass-card:nth-child(3) { animation-delay: 0.19s; }
  .cards-grid .glass-card:nth-child(4) { animation-delay: 0.26s; }
  .cards-grid .glass-card:nth-child(5) { animation-delay: 0.33s; }
  .cards-grid .glass-card:nth-child(6) { animation-delay: 0.40s; }

  @keyframes cardFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-content h1 {
    animation: heroSlide 0.7s ease-out both;
  }
  .hero-desc {
    animation: heroSlide 0.7s 0.12s ease-out both;
  }
  .hero-actions {
    animation: heroSlide 0.7s 0.22s ease-out both;
  }
  @keyframes heroSlide {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ── 移动端 ── */
@media (max-width: 768px) {
  .content-with-aside {
    grid-template-columns: 1fr;
  }
  .content-aside {
    position: static;
  }
  .header-brand-row {
    padding: 0.6rem 1rem;
  }
  .main-nav p a {
    padding: 0.6rem 0.7rem;
    font-size: 0.82rem;
  }
  .hero-section {
    min-height: 60vh;
    padding: 4rem 1rem 7rem;
  }
  .page-hero-section {
    padding: 2.5rem 1rem 5rem;
  }
  .content-section {
    padding: 2rem 1rem;
  }
  .featured-section,
  .sub-pages-area {
    padding: 2rem 1rem;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .values-row {
    grid-template-columns: 1fr;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .cta-section { padding: 3rem 1rem; }
  .cta-inner .btn-primary { margin-right: 0; margin-bottom: 0.5rem; }
  .cta-inner { text-align: left; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .brand-name { font-size: 1.2rem; }
  .hero-content h1 { font-size: 1.75rem; }
  .page-hero-content h1 { font-size: 1.5rem; }
  .main-nav p {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav p a {
    min-height: 44px;
    padding: 0.6rem 0.65rem;
    font-size: 0.8rem;
  }
  .header-contact-entry a {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
  }
}
