:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --primary-light: #e0f2fe;
  --accent: #10b981;
  --accent-dark: #059669;
  --accent-light: #d1fae5;
  --dark: #0f172a;
  --gray-900: #1e293b;
  --gray-700: #334155;
  --gray-500: #64748b;
  --gray-300: #cbd5e1;
  --gray-100: #f1f5f9;
  --white: #ffffff;
  --bg: #f8fafc;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,.05), 0 10px 15px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 25px rgba(0,0,0,.08), 0 20px 40px rgba(0,0,0,.04);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-3 { margin-bottom: 3rem; }
img { max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

::selection { background: var(--primary); color: var(--white); }

.section { padding: 80px 0; }
.section-alt { background: var(--white); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.section-tag {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 20px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .3px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-header p {
  color: var(--gray-500);
  font-size: 1.1rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.site-header.hidden { transform: translateY(-100%); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-weight: 700;
  font-size: 1.15rem;
}
.logo:hover { color: var(--primary); }
.logo-img { height: 36px; width: auto; }

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-selector { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  cursor: pointer;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: all var(--transition);
  font-family: inherit;
}
.lang-btn:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary-dark); }
.lang-btn svg { width: 14px; height: 14px; }
.lang-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 130px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  list-style: none;
  z-index: 200;
  margin-top: 4px;
}
.lang-selector:hover .lang-menu,
.lang-selector:focus-within .lang-menu { display: block; }
.lang-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--gray-700);
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
}
.lang-menu a:hover { background: var(--gray-100); color: var(--primary); }
.lang-menu a.active { background: var(--primary-light); color: var(--primary-dark); font-weight: 600; }

html[lang="zh-Hant"] body { font-family: 'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, sans-serif; }

.nav-list {
  display: flex;
  list-style: none;
  gap: 2px;
}
.nav-list > li > a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--gray-700);
  font-size: .875rem;
  font-weight: 500;
  transition: all var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  list-style: none;
  z-index: 100;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--gray-700);
  font-size: .85rem;
  font-weight: 500;
  transition: all var(--transition);
}
.dropdown-menu a:hover { background: var(--gray-100); color: var(--primary); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0ea5e9 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(16,185,129,.15) 0%, transparent 60%),
              radial-gradient(circle at 80% 30%, rgba(14,165,233,.15) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { color: var(--white); }
.hero-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  font-size: .8rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-text .highlight { color: var(--accent); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(16,185,129,.3); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
  color: var(--white);
}

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-circle {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,.2) 0%, rgba(14,165,233,.1) 50%, transparent 70%);
  border: 1px solid rgba(255,255,255,.1);
  animation: pulse-circle 4s ease-in-out infinite;
}
@keyframes pulse-circle {
  0%, 100% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.05); opacity: 1; }
}
.hero-stats {
  position: absolute;
  display: flex;
  gap: 24px;
}
.stat {
  text-align: center;
  color: var(--white);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  padding: 20px 28px;
  border-radius: var(--radius);
}
.stat-num { display: block; font-size: 2rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.7); }

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 1;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.card p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}
.card-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  font-size: .85rem;
  color: var(--primary);
}
.card-img {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1e3a5f 100%);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stats-item {
  text-align: center;
  color: var(--white);
  padding: 24px;
}
.stats-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stats-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.pillar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.pillar-icon svg { width: 28px; height: 28px; }
.pillar h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.pillar p { font-size: .88rem; color: var(--gray-500); line-height: 1.6; }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 80px 0;
}
.cta-content { text-align: center; color: var(--white); }
.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  opacity: .9;
}
.cta-content .btn-primary {
  background: var(--white);
  color: var(--primary-dark);
}
.cta-content .btn-primary:hover { background: var(--gray-100); transform: translateY(-2px); }

/* Page Hero */
.page-hero {
  padding: 140px 0 60px;
  color: var(--white);
  text-align: center;
  position: relative;
}
.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.page-hero p { font-size: 1.1rem; opacity: .8; max-width: 600px; margin: 0 auto; }
.page-hero--iot { background: linear-gradient(135deg, #0f172a, #0ea5e9); }
.page-hero--product { background: linear-gradient(135deg, #0f172a, #10b981); }
.page-hero--smart-irrigation { background: linear-gradient(135deg, #064e3b, #10b981); }
.page-hero--smart-toilet { background: linear-gradient(135deg, #1e293b, #0ea5e9); }
.page-hero--ipos { background: linear-gradient(135deg, #1e3a5f, #0284c7); }
.page-hero--service { background: linear-gradient(135deg, #0f172a, #6366f1); }
.page-hero--about { background: linear-gradient(135deg, #0f172a, #0ea5e9); }
.page-hero--contact { background: linear-gradient(135deg, #0f172a, #10b981); }
.page-hero--warranty { background: linear-gradient(135deg, #1e293b, #64748b); }

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.content-text h2 { font-size: 1.8rem; margin-bottom: 16px; }
.content-text h3 { font-size: 1.25rem; margin: 24px 0 12px; }
.content-text p { color: var(--gray-500); line-height: 1.8; margin-bottom: 16px; }
.content-image { text-align: center; }
.content-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
}
.caption { margin-top: 12px; font-size: .85rem; color: var(--gray-500); }
.img-circle { border-radius: 50% !important; width: 200px; height: 200px; object-fit: cover; }
.content-full { max-width: 800px; margin: 0 auto; }
.content-full h2 { font-size: 1.6rem; margin: 32px 0 16px; }
.content-full h3 { font-size: 1.15rem; margin: 24px 0 12px; }
.content-full p { color: var(--gray-500); line-height: 1.8; }
.content-full ul, .content-full ol {
  padding-left: 20px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}
.content-full ul li, .content-full ol li { margin-bottom: 6px; }

/* Benefits */
.benefits-list { list-style: none; padding: 0; }
.benefits-list li {
  padding: 12px 16px 12px 32px;
  position: relative;
  border-left: 3px solid var(--accent);
  margin-bottom: 8px;
  background: var(--gray-100);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.benefits-list li::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.benefit-item {
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  font-size: .95rem;
}

/* Protocols */
.protocols-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}
.protocol {
  padding: 12px 28px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 100px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--primary-dark);
  box-shadow: var(--shadow);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.feature {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.04);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.feature h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--primary-dark); }
.feature p { font-size: .88rem; color: var(--gray-500); line-height: 1.6; }

/* Metrics */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.metric {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.metric-label { display: block; font-weight: 700; font-size: 1rem; color: var(--primary-dark); margin-bottom: 4px; }
.metric-desc { font-size: .85rem; color: var(--gray-500); }

/* Table */
.table-wrapper {
  overflow-x: auto;
  margin: 16px 0;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.spec-table thead { background: var(--gray-900); color: var(--white); }
.spec-table th, .spec-table td {
  padding: 12px 20px;
  text-align: left;
  font-size: .9rem;
}
.spec-table tbody tr { border-bottom: 1px solid var(--gray-100); }
.spec-table tbody tr:nth-child(even) { background: var(--gray-100); }

/* DSDM Steps */
.dsdm-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.dsdm-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.dsdm-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-num {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.dsdm-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.dsdm-step p { font-size: .85rem; color: var(--gray-500); }

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}
.contact-card {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.contact-card h3 { font-size: .9rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.contact-card p { font-size: 1rem; }
.contact-card a { color: var(--gray-900); font-weight: 500; }
.contact-card a:hover { color: var(--primary); }

.contact-form-wrapper h2 { font-size: 1.5rem; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .9rem; font-weight: 500; margin-bottom: 6px; color: var(--gray-700); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,165,233,.12);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer-links h4,
.footer-products h4,
.footer-contact h4 {
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 16px;
}
.footer-links ul,
.footer-products ul {
  list-style: none;
}
.footer-links li,
.footer-products li {
  margin-bottom: 8px;
}
.footer-links a,
.footer-products a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-products a:hover { color: var(--accent); }
.footer-contact p {
  font-size: .88rem;
  margin-bottom: 6px;
  line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
  font-size: .85rem;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text h1 { font-size: 2.4rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { position: static; flex-direction: column; align-items: center; }
  .hero-circle { width: 200px; height: 200px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero h1 { font-size: 2rem; }
}

@media (max-width: 640px) {
  .header-inner { gap: 8px; }
  .nav-toggle { display: flex; }
  .lang-btn span { display: none; }
  .lang-btn { padding: 6px 8px; }
  .nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
  }
  .nav.open { max-height: 80vh; overflow-y: auto; }
  .nav-list { flex-direction: column; padding: 16px; gap: 0; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 16px;
    display: none;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .section { padding: 48px 0; }
  .section-header h2 { font-size: 1.6rem; }
  .hero-text h1 { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-circle { width: 150px; height: 150px; }
  .stat { padding: 12px 20px; }
  .stat-num { font-size: 1.5rem; }
  .page-hero { padding: 110px 0 40px; }
  .page-hero h1 { font-size: 1.6rem; }
  .dsdm-steps { grid-template-columns: 1fr; }
}
