/* ============================================================
   AI Design Pro — homepage styles
   Brand palette sampled from the DesignPro green identity
   ============================================================ */
:root {
  --brand: #57bb6c;          /* primary green */
  --brand-dark: #43a85a;
  --brand-darker: #379149;
  --brand-tint: #eaf7ee;     /* pale green wash */
  --brand-tint-2: #d7eedd;
  --ink: #2f3a33;
  --ink-soft: #5d6b62;
  --line: #e4e8e5;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(40, 80, 55, .08);
  --shadow-md: 0 12px 30px rgba(40, 90, 60, .14);
  --shadow-lg: 0 26px 60px rgba(40, 90, 60, .20);
  --radius: 10px;
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans TC", system-ui, -apple-system, "PingFang HK", "Microsoft JhengHei", sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.ico { width: 18px; height: 18px; fill: currentColor; flex: none; }

/* ---------- TOP UTILITY BAR ---------- */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  gap: 20px;
}
.topbar__contacts { display: flex; gap: 34px; }
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  transition: color .15s;
}
.topbar__item .ico { color: var(--brand); }
.topbar__item:hover { color: var(--brand-dark); }
.topbar__search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f1f3f2;
  border-radius: 22px;
  padding: 8px 16px;
  min-width: 280px;
  color: #98a39c;
}
.topbar__search input {
  border: 0;
  background: transparent;
  outline: none;
  font-size: 14px;
  width: 100%;
  color: var(--ink);
}

/* ---------- BRAND / PARTNER STRIP ---------- */
.brandstrip { background: var(--white); }
.brandstrip__inner {
  display: flex;
  align-items: center;
  gap: 36px;
  min-height: 84px;
}
.logo { display: inline-flex; align-items: center; gap: 9px; flex: none; }
.logo__img { height: 38px; width: auto; }
.logo__ai {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--white);
  background: var(--brand);
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: .5px;
  line-height: 1;
}

.partners {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.partner-logo {
  height: 26px;
  width: auto;
  object-fit: contain;
  opacity: .9;
  transition: opacity .15s, filter .15s;
}
.partner-logo:hover { opacity: 1; }

/* ---------- NAVIGATION ---------- */
.nav {
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 60;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 20px;
}
.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 500;
  color: #3c473f;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav__link:hover { color: var(--brand-dark); background: var(--brand-tint); }
.caret { width: 16px; height: 16px; fill: currentColor; transition: transform .2s; }
.has-dropdown:hover .caret { transform: rotate(180deg); }

.nav__lang .globe { width: 18px; height: 18px; fill: var(--brand-dark); }
.lang-current { font-size: 15px; font-weight: 600; }
.dropdown--lang { min-width: 150px; left: auto; right: 0; }
.dropdown--lang a { display: flex; align-items: center; justify-content: space-between; }
.dropdown--lang a.is-active {
  background: var(--brand-tint);
  color: var(--brand-darker);
  font-weight: 700;
}
.dropdown--lang a.is-active::after { content: "✓"; color: var(--brand-dark); }

/* dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s, transform .16s, visibility .16s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.is-open .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 11px 16px;
  font-size: 15px;
  color: #45524a;
  border-radius: 7px;
  transition: background .14s, color .14s, padding-left .14s;
}
.dropdown li a:hover {
  background: var(--brand-tint);
  color: var(--brand-darker);
  padding-left: 20px;
}

/* buttons */
.nav__actions { display: flex; gap: 12px; flex: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 26px;
  border-radius: 8px;
  transition: transform .12s, box-shadow .18s, background .15s, color .15s;
  white-space: nowrap;
}
.btn--solid {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(87, 187, 108, .35);
}
.btn--solid:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(87, 187, 108, .42); }
.btn--outline {
  background: var(--white);
  color: var(--brand-dark);
  border: 2px solid var(--brand);
}
.btn--outline:hover { background: var(--brand-tint); transform: translateY(-2px); }
.btn--white { background: var(--white); color: var(--brand-darker); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: rgba(255,255,255,.12); color: var(--white); border: 2px solid rgba(255,255,255,.7); }
.btn--ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn--lg { padding: 15px 38px; font-size: 18px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% 30%, var(--brand-tint) 0%, rgba(234,247,238,0) 60%),
    linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
}
.hero::before {
  content: "";
  position: absolute;
  right: -60px; top: 40px; bottom: 40px; width: 60%;
  background-image:
    linear-gradient(135deg, rgba(87,187,108,.08) 25%, transparent 25%),
    linear-gradient(225deg, rgba(87,187,108,.06) 25%, transparent 25%);
  background-size: 90px 90px;
  -webkit-mask-image: radial-gradient(circle at 70% 40%, #000, transparent 70%);
          mask-image: radial-gradient(circle at 70% 40%, #000, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: 580px;
  padding-top: 30px;
  padding-bottom: 48px;
  position: relative;
  z-index: 1;
}
.hero__pill {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-darker);
  background: var(--brand-tint);
  border: 1px solid var(--brand-tint-2);
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
  letter-spacing: .3px;
}
.hero__title {
  font-size: 46px;
  line-height: 1.22;
  font-weight: 900;
  color: #2c3a31;
  margin: 0 0 18px;
}
.hero__brand {
  color: var(--brand-dark);
  font-family: "Poppins", "Noto Sans TC", sans-serif;
}
.hero__lead {
  font-size: 26px;
  font-weight: 700;
  color: #46554b;
  margin: 0 0 16px;
}
.hero__text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.hero__badge {
  display: inline-block;
  font-size: 19px;
  font-weight: 800;
  color: var(--brand-darker);
  background: var(--brand-tint);
  border: 1px dashed var(--brand);
  padding: 8px 18px;
  border-radius: 30px;
  margin: 0 0 28px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__visual { position: relative; }
.hero__glow {
  position: absolute;
  width: 78%; aspect-ratio: 1;
  right: 6%; top: 8%;
  background: radial-gradient(circle at 50% 45%, #bfe9c9 0%, rgba(191,233,201,0) 65%);
  filter: blur(6px);
  z-index: 0;
  animation: float 9s ease-in-out infinite;
}
.hero__banner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(40, 90, 60, .16));
  animation: floatY 7s ease-in-out infinite;
}

/* ---------- SHARED SECTION HEAD ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 46px; }
.section-head__eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--brand-dark);
  margin-bottom: 12px;
}
.section-head__title {
  font-size: 34px;
  font-weight: 900;
  color: #2c3a31;
  margin: 0 0 14px;
  line-height: 1.3;
}
.section-head__sub {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- AI PROCESS ---------- */
.process { padding: 84px 0; background: linear-gradient(180deg, #f4faf6 0%, #ffffff 100%); }
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 22px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--brand-tint-2); }
.step__num {
  position: absolute;
  top: 16px; right: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--brand-tint-2);
}
.step__icon { width: 96px; height: 96px; margin: 0 auto 14px; object-fit: contain; }
.step__title { font-size: 18px; font-weight: 800; color: #34423a; margin: 0 0 10px; }
.step__text { font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); margin: 0; }

/* ---------- FEATURES / MOCKUPS ---------- */
.features { padding: 84px 0; background: #fbfdfc; overflow: hidden; }
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  margin-top: 64px;
}
.feature--reverse .feature__copy { order: 2; }
.feature--reverse .feature__mock { order: 1; }
.feature__eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--brand-dark);
  margin-bottom: 14px;
}
.feature__title { font-size: 30px; font-weight: 900; color: #2c3a31; margin: 0 0 16px; line-height: 1.35; }
.feature__text { font-size: 17px; line-height: 1.8; color: var(--ink-soft); margin: 0 0 22px; }
.feature__list { display: grid; gap: 14px; }
.feature__list li {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  color: #45524a;
  line-height: 1.55;
}
.feature__list li::before {
  content: "";
  position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23379149' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
}

/* mock shared chrome */
.feature__mock { position: relative; display: flex; justify-content: center; }
.mock-glow {
  position: absolute; inset: -8% 4% -8% 4%;
  background: radial-gradient(60% 60% at 60% 40%, #d7eedd 0%, rgba(215,238,221,0) 70%);
  filter: blur(6px); z-index: 0;
}
.stat-badge {
  position: absolute;
  top: 26px; right: -18px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  z-index: 5;
  min-width: 116px;
}
.stat-badge__label { display: block; font-size: 12px; color: var(--ink-soft); margin-bottom: 2px; }
.stat-badge__value {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 800; font-size: 26px; color: var(--brand-darker);
  line-height: 1.1;
}
.stat-badge__value small { font-size: 14px; font-weight: 700; color: var(--ink-soft); margin-left: 2px; }
.stat-badge__bar { display: block; height: 5px; border-radius: 4px; background: var(--brand-tint-2); margin-top: 8px; overflow: hidden; }
.stat-badge__bar i { display: block; height: 100%; width: 72%; border-radius: 4px; background: var(--brand); }

/* chat mock */
.chat {
  position: relative; z-index: 1;
  width: 340px; max-width: 100%;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.chat__head { display: flex; align-items: center; gap: 11px; padding: 14px 16px; background: #0c3b2e; color: #fff; }
.chat__avatar { width: 38px; height: 38px; border-radius: 50%; background: #16a34a; display: grid; place-items: center; }
.chat__avatar svg { width: 22px; height: 22px; fill: #fff; }
.chat__meta strong { display: block; font-size: 15px; }
.chat__status { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: #b6e3cd; }
.chat__status i { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; }
.chat__body { background: #e7e0d7; padding: 16px 14px; display: grid; gap: 10px; }
.bubble { max-width: 78%; padding: 9px 12px; border-radius: 12px; font-size: 13.5px; line-height: 1.5; box-shadow: 0 1px 1px rgba(0,0,0,.06); }
.bubble--in { background: #fff; justify-self: start; border-top-left-radius: 4px; color: #2f3a33; }
.bubble--out { background: #d6f5c8; justify-self: end; border-top-right-radius: 4px; color: #1f3320; }
.bubble__thumbs { display: flex; gap: 6px; margin-top: 8px; }
.bubble__thumbs i { width: 42px; height: 30px; border-radius: 6px; display: block; }
.bubble--typing { display: inline-flex; gap: 4px; background: #fff; justify-self: start; border-top-left-radius: 4px; padding: 11px 13px; }
.bubble--typing i { width: 7px; height: 7px; border-radius: 50%; background: #9fb1a6; animation: blink 1.2s infinite both; }
.bubble--typing i:nth-child(2) { animation-delay: .2s; }
.bubble--typing i:nth-child(3) { animation-delay: .4s; }

/* generator mock */
.gen, .review {
  position: relative; z-index: 1;
  width: 380px; max-width: 100%;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}
.gen__bar, .review__bar { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: #f7faf8; }
.gen__dots { display: inline-flex; gap: 6px; }
.gen__dots i { width: 10px; height: 10px; border-radius: 50%; background: #d6ded9; }
.gen__dots i:first-child { background: #f0a8a0; }
.gen__dots i:nth-child(2) { background: #f2d08a; }
.gen__dots i:nth-child(3) { background: #a8d8b4; }
.gen__title { font-size: 14px; font-weight: 700; color: #45524a; }
.gen__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 18px; }
.gen__cell {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  background: linear-gradient(135deg, #eef6f0, #dcefe2);
  display: grid; place-items: center;
  position: relative;
  border: 2px solid transparent;
}
.gen__cell b { font-family: "Poppins", sans-serif; font-size: 22px; color: #9fc2ab; }
.gen__cell:nth-child(1) { background: linear-gradient(135deg, #bfe9c9, #57bb6c); }
.gen__cell:nth-child(2) { background: linear-gradient(135deg, #fce9c8, #e0b94e); }
.gen__cell:nth-child(3) { background: linear-gradient(135deg, #cdddf3, #5a86c8); }
.gen__cell:nth-child(4) { background: linear-gradient(135deg, #f6d6cd, #d98a72); }
.gen__cell b { color: rgba(255,255,255,.85); }
.gen__cell--sel { border-color: var(--brand-darker); box-shadow: 0 0 0 3px rgba(87,187,108,.25); }
.gen__cell--sel::after { content: "✓"; position: absolute; top: 6px; right: 8px; color: #fff; font-weight: 800; font-size: 14px; }
.gen__prompt { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-top: 1px solid var(--line); }
.gen__promptText { flex: 1; font-size: 13px; color: var(--ink-soft); background: #f1f4f2; padding: 8px 12px; border-radius: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gen__btn { background: var(--brand); color: #fff; font-weight: 700; font-size: 13px; padding: 8px 14px; border-radius: 8px; white-space: nowrap; }

/* review / annotation mock */
.review__rev { margin-left: auto; font-size: 12px; font-weight: 700; color: var(--brand-darker); background: var(--brand-tint); padding: 4px 10px; border-radius: 20px; white-space: nowrap; }
/* keep the feedback card's floating badge clear of the revision chip */
.review .stat-badge { top: auto; bottom: 22px; }
.review__canvas { position: relative; padding: 26px; background: #f4f7f5; }
.review__poster {
  display: block; position: relative;
  width: 150px; margin: 0 auto;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  background: linear-gradient(160deg, #eafaf0, #cdeed8);
  box-shadow: var(--shadow-sm);
  padding: 18px 16px;
}
.review__pTitle { font-size: 26px; font-weight: 900; color: var(--brand-darker); }
.review__pLine { display: block; height: 7px; border-radius: 4px; background: #b6d8c2; margin-top: 12px; }
.review__pLine--s { width: 60%; }
.review__pLogo { position: absolute; top: 16px; right: 14px; width: 22px; height: 22px; border-radius: 50%; background: var(--brand); }
.pin {
  position: absolute;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--brand-darker);
  color: #fff; font-size: 13px; font-weight: 800; line-height: 1;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  border: 2px solid #fff;
}
.pin--1 { top: 40px; left: 92px; }
.pin--2 { top: 150px; left: 150px; }
.note {
  position: absolute; bottom: 26px; left: 26px;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border-radius: 10px;
  padding: 8px 12px; font-size: 13px; color: #45524a;
  box-shadow: var(--shadow-md);
}
.note b { width: 18px; height: 18px; border-radius: 50%; background: var(--brand-darker); color: #fff; font-size: 11px; display: grid; place-items: center; }

@keyframes blink { 0%, 80%, 100% { opacity: .3; } 40% { opacity: 1; } }

/* ---------- WORKS ---------- */
.works { padding: 84px 0; }
.works__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.work {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #f3faf5;
  transition: transform .18s, box-shadow .18s;
}
.work:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.work img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 351 / 500; }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-darker) 100%);
  color: var(--white);
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 54px 28px;
  flex-wrap: wrap;
}
.cta-band__title { font-size: 28px; font-weight: 900; margin: 0 0 8px; }
.cta-band__sub { font-size: 17px; margin: 0; opacity: .92; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.footer { background: #1f2a23; color: #c7d2cb; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 60px 28px 44px;
}
.footer__brand .logo__img { height: 34px; background: #fff; padding: 6px 10px; border-radius: 8px; margin-bottom: 16px; }
.footer__tag { font-size: 15px; line-height: 1.7; margin: 0 0 16px; max-width: 320px; }
.footer__contact { font-size: 15px; line-height: 1.8; }
.footer__contact a:hover { color: var(--brand); }
.footer__col h4 { color: #fff; font-size: 16px; margin: 0 0 16px; }
.footer__col a { display: block; font-size: 15px; padding: 6px 0; color: #c7d2cb; transition: color .14s; }
.footer__col a:hover { color: var(--brand); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; font-size: 13px; color: #8b988f; }

@keyframes float  { 0%,100% { transform: translate(0,0); } 50% { transform: translate(0,-14px); } }
@keyframes floatY { 0%,100% { transform: translateY(0); }   50% { transform: translateY(-12px); } }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .partners { gap: 18px; }
  .partner-logo { height: 22px; }
  .hero__title { font-size: 38px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .topbar__search { min-width: 0; width: 180px; }
  .partners { display: none; }
  .nav__inner { flex-wrap: wrap; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 520px; margin: 0 auto; }
  .works__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .feature { grid-template-columns: 1fr; gap: 36px; margin-top: 56px; }
  .feature--reverse .feature__copy { order: 1; }
  .feature--reverse .feature__mock { order: 2; }
  .stat-badge { right: 8px; }
}
@media (max-width: 680px) {
  .topbar__contacts { gap: 16px; }
  .topbar__item span { display: none; }
  .nav__menu { gap: 0; flex-wrap: wrap; }
  .nav__link { padding: 10px 12px; font-size: 15px; }
  .hero__title { font-size: 30px; }
  .hero__cta .btn--lg { padding: 13px 26px; font-size: 16px; }
  .steps { grid-template-columns: 1fr; }
  .works__grid { grid-template-columns: repeat(2, 1fr); }
  .section-head__title { font-size: 26px; }
  .cta-band__inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
