@font-face {
  font-family: "Be Vietnam Pro";
  src: url("fonts/BeVietnamPro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("fonts/BeVietnamPro-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat%5Bwght%5D.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #ff7a00;
  --orange-soft: #ffb347;
  --orange-deep: #b94b00;
  --cream: #fff7ea;
  --cream-strong: #fff1d7;
  --milk: #fffaf2;
  --almond: #f6dfbd;
  --brown: #2d2118;
  --brown-soft: #5d4633;
  --muted: #7a6b5b;
  --line: rgba(139, 84, 31, 0.22);
  --glass: rgba(255, 248, 235, 0.86);
  --white-glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 22px 60px rgba(89, 42, 0, 0.17);
  --shadow-soft: 0 14px 34px rgba(80, 40, 0, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
  --vi-font: "Be Vietnam Pro", "Montserrat", Arial, sans-serif;
  --cn-font: "Noto Sans SC", "Source Han Sans SC", "Alibaba PuHuiTi", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brown);
  font-family: var(--vi-font);
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 221, 118, 0.88), transparent 36rem),
    radial-gradient(circle at 18% 16%, rgba(255, 134, 0, 0.28), transparent 34rem),
    linear-gradient(135deg, #fffaf0 0%, #ffd275 52%, #f59412 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: var(--page-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.54;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 246, 231, 0.88) 0%, rgba(255, 238, 197, 0.72) 44%, rgba(246, 133, 10, 0.18) 100%),
    radial-gradient(circle at 92% 68%, rgba(255, 255, 255, 0.78), transparent 26rem);
}

.page-home {
  --page-bg: url("backgrounds/bg_cover_ppt.jpg");
}

.page-products {
  --page-bg: url("backgrounds/bg_portfolio_ppt.jpg");
}

.page-cooperation {
  --page-bg: url("backgrounds/bg_cooperation_contact_ppt.jpg");
}

.page-contact {
  --page-bg: url("backgrounds/bg_company_ppt.jpg");
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 244, 220, 0.72);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(121, 60, 0, 0.16));
}

.brand-text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-vi {
  color: var(--orange-deep);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-cn {
  color: var(--brown-soft);
  font-family: var(--cn-font);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(139, 84, 31, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.72);
}

.lang-btn {
  min-width: 42px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--brown-soft);
  background: transparent;
  font-family: var(--vi-font);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.lang-btn.active,
.lang-btn:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #d45a00);
}

.nav-link {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--brown-soft);
  font-size: 13px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link span {
  display: block;
  font-family: var(--cn-font);
  font-size: 10px;
  font-weight: 700;
  opacity: 0.62;
  text-align: center;
}

.nav-link span:empty {
  display: none;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #e25d00);
  transform: translateY(-1px);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #d45a00);
  box-shadow: 0 12px 24px rgba(199, 84, 0, 0.22);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(199, 84, 0, 0.3);
}

.button.secondary {
  color: var(--brown);
  background: rgba(255, 251, 242, 0.82);
  border: 1px solid var(--line);
  box-shadow: none;
}

.main {
  overflow: hidden;
}

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

.section.tight {
  padding-top: 44px;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 46px;
  padding-top: 42px;
  padding-bottom: 60px;
}

.hero-copy {
  position: relative;
  padding: 38px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.9), rgba(255, 239, 210, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.hero-copy::before,
.section-title::before {
  content: "";
  display: block;
  width: 84px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-soft));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-cn,
.title-cn {
  margin: 14px 0 0;
  color: var(--brown-soft);
  font-family: var(--vi-font);
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1.2;
  font-weight: 800;
}

.lead {
  margin: 22px 0 0;
  max-width: 680px;
  color: #4a3728;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.58;
  font-weight: 700;
}

.lead-cn {
  margin: 10px 0 0;
  color: var(--muted);
  font-family: var(--vi-font);
  font-size: clamp(13px, 1.1vw, 17px);
  line-height: 1.7;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-stage {
  min-height: 520px;
  position: relative;
  isolation: isolate;
}

.sun-disc {
  position: absolute;
  inset: 6% 0 2% 4%;
  z-index: -1;
  border-radius: 48px;
  background:
    radial-gradient(circle at 46% 42%, rgba(255, 255, 255, 0.86), transparent 19rem),
    linear-gradient(145deg, rgba(255, 241, 191, 0.78), rgba(247, 132, 0, 0.38));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42), var(--shadow);
}

.hero-products {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: center;
  padding: 36px;
  height: 100%;
  min-height: 520px;
}

.hero-product {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  margin: 0;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 248, 235, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(73, 36, 0, 0.2));
}

.hero-product:nth-child(1) {
  transform: translateY(16px);
}

.hero-product:nth-child(2) {
  transform: translateY(-18px);
}

.hero-product:nth-child(3) {
  transform: translateY(-2px);
}

.hero-product:nth-child(4) {
  transform: translateY(18px);
}

.floating-logo {
  position: absolute;
  left: 24px;
  bottom: 22px;
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(92, 45, 0, 0.22));
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -28px;
}

.stat {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--glass);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.stat strong {
  display: block;
  color: var(--orange-deep);
  font-size: 28px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--brown-soft);
  font-size: 13px;
  font-weight: 800;
}

.stat small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--cn-font);
  font-size: 11px;
  line-height: 1.4;
}

.section-title {
  margin-bottom: 32px;
}

.section-title h2 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
}

.section-title p {
  margin: 12px 0 0;
  max-width: 760px;
  color: var(--brown-soft);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 700;
}

.section-title .cn {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--cn-font);
  font-size: 14px;
  font-weight: 600;
}

.grid {
  display: grid;
  gap: 20px;
}

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

.service-card,
.advantage-card,
.partner-card,
.step-card,
.contact-card,
.product-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 250, 240, 0.9), rgba(255, 238, 211, 0.82));
  box-shadow: var(--shadow-soft);
}

.service-card {
  min-height: 240px;
  padding: 24px;
  border-radius: var(--radius);
}

.service-icon,
.advantage-icon,
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #e25700);
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(219, 91, 0, 0.24);
}

.service-card h3,
.advantage-card h3,
.partner-card h3,
.step-card h3,
.contact-card h3 {
  margin: 0;
  color: var(--brown);
  font-size: 19px;
  line-height: 1.22;
  font-weight: 900;
}

.cn {
  font-family: var(--vi-font);
}

body[data-lang="zh"] .hero-cn,
body[data-lang="zh"] .title-cn,
body[data-lang="zh"] .lead-cn,
body[data-lang="zh"] .cn,
body[data-lang="zh"] .brand-cn,
body[data-lang="zh"] .nav-link span,
body[data-lang="zh"] .footer-brand span {
  font-family: var(--cn-font);
}

.service-card .cn,
.advantage-card .cn,
.partner-card .cn,
.step-card .cn {
  margin-top: 7px;
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 800;
}

.service-card p,
.advantage-card p,
.partner-card p,
.step-card p,
.contact-card p {
  margin: 14px 0 0;
  color: var(--brown-soft);
  font-size: 14px;
  line-height: 1.62;
  font-weight: 650;
}

.warm-band {
  margin: 18px auto 0;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(64, 36, 17, 0.9), rgba(148, 70, 0, 0.82)),
    radial-gradient(circle at 74% 26%, rgba(255, 177, 62, 0.45), transparent 20rem);
  color: #fff8ed;
  box-shadow: var(--shadow);
}

.advantage-grid {
  grid-template-columns: repeat(5, 1fr);
}

.advantage-card {
  min-height: 190px;
  padding: 20px;
  border-radius: var(--radius-sm);
}

.advantage-card h3 {
  font-size: 16px;
}

.advantage-card p {
  color: #6b4b31;
  font-size: 13px;
}

.featured-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

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

.product-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(92, 43, 0, 0.18);
}

.product-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 230px;
  padding: 24px 18px 14px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.94), transparent 42%),
    linear-gradient(180deg, rgba(255, 228, 164, 0.58), rgba(255, 248, 236, 0.14));
}

.product-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 17px 23px rgba(72, 35, 0, 0.2));
}

.product-body {
  padding: 0 22px 22px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--orange-deep);
  background: rgba(255, 122, 0, 0.1);
  font-size: 11px;
  font-weight: 900;
}

.spec {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.product-card h3 {
  margin: 0;
  color: var(--brown);
  font-size: 20px;
  line-height: 1.16;
  font-weight: 900;
}

.product-card .product-vi {
  margin: 7px 0 0;
  color: var(--orange-deep);
  font-size: 14px;
  font-weight: 800;
}

.product-card .product-cn {
  margin: 5px 0 0;
  color: var(--muted);
  font-family: var(--cn-font);
  font-size: 12px;
  font-weight: 700;
}

.product-desc {
  margin: 13px 0 0;
  color: var(--brown-soft);
  font-size: 13px;
  line-height: 1.58;
  font-weight: 650;
}

.product-desc.cn {
  margin-top: 7px;
  color: #756454;
  font-size: 12px;
  font-weight: 600;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 249, 239, 0.94), rgba(255, 223, 166, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(28px, 3.3vw, 46px);
  line-height: 1.06;
  font-weight: 900;
}

.cta-band p {
  margin: 12px 0 0;
  max-width: 780px;
  color: var(--brown-soft);
  font-size: 16px;
  line-height: 1.58;
  font-weight: 700;
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  gap: 38px;
  padding-top: 58px;
  padding-bottom: 36px;
}

.page-hero-panel {
  padding: 34px;
  border-radius: 34px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.page-hero-logo {
  justify-self: center;
  width: min(280px, 70vw);
  filter: drop-shadow(0 22px 34px rgba(86, 40, 0, 0.22));
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--brown-soft);
  background: rgba(255, 249, 238, 0.78);
  font-family: var(--vi-font);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #d65a00);
  transform: translateY(-1px);
}

.catalog-note,
.notice {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--orange);
  border-radius: 18px;
  background: rgba(255, 249, 238, 0.8);
  color: var(--brown-soft);
  font-size: 14px;
  line-height: 1.62;
  font-weight: 700;
}

.cooperation-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.step-grid {
  grid-template-columns: 1fr;
}

.step-card,
.partner-card {
  padding: 24px;
  border-radius: var(--radius);
}

.step-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
}

.step-num {
  width: 54px;
  height: 54px;
  margin: 0;
  border-radius: 18px;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: stretch;
}

.contact-logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  padding: 38px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 252, 246, 0.8), rgba(255, 225, 172, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.contact-logo-panel img {
  width: min(340px, 82%);
  filter: drop-shadow(0 22px 36px rgba(84, 40, 0, 0.2));
}

.contact-card {
  padding: 32px;
  border-radius: 34px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}

.contact-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(142, 88, 31, 0.13);
}

.contact-row strong {
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 900;
}

.contact-row span,
.contact-row a {
  color: var(--brown);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 38px 0;
  background: rgba(66, 39, 20, 0.9);
  color: #fff4df;
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

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

.footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
}

.footer-brand span {
  display: block;
  margin-top: 3px;
  font-family: var(--cn-font);
  color: rgba(255, 244, 223, 0.74);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  color: rgba(255, 244, 223, 0.84);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav {
    min-height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero,
  .page-hero,
  .cooperation-layout,
  .contact-layout,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 24px;
  }

  .hero-stage {
    min-height: 450px;
  }

  .hero-products {
    min-height: 450px;
    padding: 24px;
  }

  .stats-row,
  .service-grid,
  .advantage-grid,
  .product-grid,
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero-logo {
    width: 210px;
  }
}

@media (max-width: 640px) {
  .nav,
  .section,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-vi {
    font-size: 12px;
  }

  .brand-cn {
    font-size: 11px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .lang-switcher {
    order: 2;
  }

  .lang-btn {
    min-width: 38px;
    height: 32px;
    font-size: 11px;
  }

  .section {
    padding: 50px 0;
  }

  .hero-copy,
  .page-hero-panel,
  .cta-band,
  .contact-card {
    padding: 24px;
    border-radius: 24px;
  }

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

  .hero-cn,
  .title-cn {
    font-size: 24px;
  }

  .lead {
    font-size: 16px;
  }

  .stats-row,
  .service-grid,
  .advantage-grid,
  .product-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .product-media {
    height: 220px;
  }

  .hero-stage,
  .hero-products {
    min-height: 420px;
  }

  .hero-product {
    border-radius: 18px;
  }

  .floating-logo {
    width: 76px;
    height: 76px;
    left: 18px;
    bottom: 18px;
  }

  .featured-head,
  .footer-inner {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .step-card {
    grid-template-columns: 1fr;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }
}
