*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #F47B20;
  --orange-dark: #C9600A;
  --orange-light: #FFF3E6;
  --orange-mid: #FDDBB8;
  --amber: #F5A623;
  --amber-light: #FFF8E1;
  --warm-white: #FFFBF5;
  --warm-cream: #FDF6EC;
  --navy: #3D2A1E;
  --brown: #7B4F2E;
  --text: #3D2A1E;
  --text-mid: #7B6155;
  --text-light: #B09080;
  --line-green: #06C755;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(244, 123, 32, 0.14);
  --shadow-hover: 0 18px 60px rgba(244, 123, 32, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans TC', sans-serif;
  color: var(--text);
  background: var(--warm-white);
  overflow-x: hidden;
  line-height: 1.65;
}

.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: var(--navy);
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translateX(260px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.06);
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 68px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #5a5a5a;
  text-decoration: none;
  border: none;
  background: transparent;
  transition: color 0.18s;
  white-space: nowrap;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links li a:hover {
  color: var(--navy);
}

.nav-links li a:hover::after {
  transform: scaleX(0.6);
  opacity: 0.5;
}

.nav-links li a.nav-active {
  color: var(--navy);
  font-weight: 700;
}

.nav-links li a.nav-active::after {
  transform: scaleX(1);
}

/* Dropdown */
.nav-links li.has-dropdown > a {
  gap: 4px;
}

.nav-links li.has-dropdown > a::before {
  content: '▾';
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.65rem;
  color: var(--text-light);
  transition: transform 0.2s;
  pointer-events: none;
}

.nav-links li.has-dropdown > a {
  padding-right: 22px;
}

.nav-links li.has-dropdown:hover > a::before {
  transform: translateY(-50%) rotate(180deg);
  color: var(--orange);
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  background: white;
  border: 1px solid rgba(244, 123, 32, 0.12);
  border-top: 2px solid var(--orange);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
  min-width: 130px;
  list-style: none;
  padding: 6px 0;
  z-index: 300;
  white-space: nowrap;
}

.nav-links li.has-dropdown:hover > .dropdown {
  display: block;
}

.dropdown li a {
  display: block;
  padding: 10px 18px;
  height: auto;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  letter-spacing: 0.01em;
}

.dropdown li a:hover {
  color: var(--orange);
  background: var(--orange-light);
}

.dropdown li a::after {
  display: none;
}

.nav-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 22px;
  height: 38px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: white;
  background: #06C755;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s;
  white-space: nowrap;
  font-family: 'Noto Sans TC', sans-serif;
  box-shadow: 0 2px 8px rgba(6, 199, 85, 0.28);
}

.nav-line-btn:hover {
  background: #04a047;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.35);
}

.page {
  display: none;
  min-height: 100vh;
  padding-top: 68px;
}

.page.active {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s;
  font-family: 'Noto Sans TC', sans-serif;
}

.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 4px 16px rgba(244, 123, 32, 0.38);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: white;
}

.btn-line {
  background: linear-gradient(135deg, #06C755, #04a047);
  color: white;
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.35);
}

.btn-line:hover {
  background: linear-gradient(135deg, #04a047, #038038);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 36px;
  font-size: 1rem;
}

.btn-white {
  background: white;
  color: var(--orange);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--orange-light);
  color: var(--orange-dark);
}

section {
  padding: 80px 7%;
}

.sec-hdr {
  text-align: center;
  margin-bottom: 52px;
}

.sec-eye {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.sec-title {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 12px;
}

.sec-desc {
  font-size: 0.96rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* HOME */
.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
  background: #FFFBF5;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 251, 245, 0.60);
  z-index: 2;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}

.hero-bg-slide.active {
  opacity: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(244, 123, 32, 0.13) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 5%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.09) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 5% 70px 7%;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  color: var(--orange-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  width: fit-content;
  border: 1px solid rgba(244, 123, 32, 0.22);
  animation: fadeUp 0.8s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 18px;
  animation: fadeUp 0.8s 0.12s ease both;
}

.hero-title em {
  color: var(--orange);
  font-style: normal;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 460px;
  animation: fadeUp 0.8s 0.24s ease both;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.36s ease both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  animation: fadeUp 0.8s 0.48s ease both;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}

.stat-div {
  width: 1px;
  background: #E8D5C4;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 5%;
  position: relative;
  z-index: 1;
}

.hero-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  max-width: 380px;
  width: 100%;
  animation: floatCard 6s ease-in-out infinite;
}

.hc-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--warm-cream);
}

.hc-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hc-name {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--navy);
}

.hc-sub {
  font-size: 0.8rem;
  color: var(--text-light);
}

.hc-ok {
  margin-left: auto;
  background: var(--orange-light);
  color: var(--orange-dark);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
}

.hc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.hc-tag {
  background: var(--warm-cream);
  color: var(--brown);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 500;
}

.hc-tag.o {
  background: var(--orange-light);
  color: var(--orange-dark);
}

.hc-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hc-stars {
  color: var(--amber);
  font-size: 0.88rem;
}

.hc-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 16px;
  transition: all 0.22s;
  font-family: 'Noto Sans TC', sans-serif;
}

.hc-btn:hover {
  background: var(--orange-dark);
}

.float-chip {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  z-index: 3;
}

.float-chip.tr {
  top: -10px;
  right: -10px;
  animation: floatMini1 5s ease-in-out infinite;
}

.float-chip.bl {
  bottom: -10px;
  left: -10px;
  animation: floatMini2 7s ease-in-out infinite;
}

.nums-sec {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: white;
  padding: 56px 7%;
}

.nums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.num-big {
  font-family: 'DM Sans', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 7px;
}

.num-lbl {
  font-size: 0.9rem;
  opacity: 0.82;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.svc-card {
  background: var(--warm-cream);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.svc-card:hover {
  border-color: var(--orange-mid);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  background: white;
}

.svc-card:hover::after {
  transform: scaleX(1);
}

.svc-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
  display: block;
}

.svc-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.svc-desc {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
}

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

.tr-card {
  background: var(--warm-cream);
  border-radius: 18px;
  padding: 32px 24px;
  border: 1px solid #F0E8DF;
  transition: all 0.3s;
}

.tr-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.tr-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.tr-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 9px;
}

.tr-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.testi-sec {
  background: var(--orange-light);
}

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

.testi-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 2px 14px rgba(244, 123, 32, 0.08);
  transition: all 0.3s;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.qmark {
  font-size: 3rem;
  color: var(--orange);
  opacity: 0.15;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  line-height: 1;
  margin-bottom: -6px;
  display: block;
}

.testi-stars {
  color: var(--amber);
  font-size: 0.82rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testi-txt {
  font-size: 0.92rem;
  color: #4A5568;
  line-height: 1.8;
  margin-bottom: 18px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tauth-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tauth-nm {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}

.tauth-role {
  font-size: 0.78rem;
  color: var(--text-light);
}

.cta-band {
  background: var(--navy);
  padding: 70px 7%;
  text-align: center;
}

.cta-band h2 {
  font-family: 'Noto Serif TC', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  font-size: 1rem;
}

.cta-band-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

footer {
  background: #2A1A10;
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 7% 32px;
}

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}

.ft-logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
  display: block;
}

.ft-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.ft-col-title {
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ft-links a {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.2s;
  cursor: pointer;
}

.ft-links a:hover {
  color: var(--orange);
}

.ft-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* SERVICES */
.services-hero {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: white;
  padding: 70px 7%;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.services-hero h1 {
  font-family: 'Noto Serif TC', serif;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.services-hero p {
  font-size: 1.08rem;
  opacity: 0.85;
  max-width: 540px;
  line-height: 1.8;
}

/* SERVICE BLOCKS (detailed list layout) */
.services-hero h2 {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.65rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.4;
  opacity: 0.97;
}

.services-hero .svc-hero-desc {
  max-width: 680px;
  font-size: 0.96rem;
  opacity: 0.82;
  line-height: 1.85;
}

.svc-block-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.svc-block {
  background: white;
  border-radius: 20px;
  padding: 36px;
  border: 2px solid #F0E8DF;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.3s;
}

.svc-block:hover {
  border-color: var(--orange-mid);
  box-shadow: var(--shadow);
}

.svc-block-hdr {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.svc-block-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.22;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 4px;
  letter-spacing: -1px;
}

.svc-block-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.svc-block-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
}

.svc-block-tagline {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.svc-block-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.85;
}

.svc-highlights {
  background: var(--warm-cream);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-highlight-title {
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.svc-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}

.svc-highlight-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.svc-highlight-label {
  font-weight: 700;
  font-size: 0.87rem;
  color: var(--navy);
}

.svc-highlight-text {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.65;
}

@media(max-width:600px) {
  .svc-highlight-grid {
    grid-template-columns: 1fr;
  }
}

.svc-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.svc-full-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 2px solid #F0E8DF;
  transition: all 0.3s;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.svc-full-card:hover {
  border-color: var(--orange-mid);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.svc-full-ico {
  width: 64px;
  height: 64px;
  background: var(--orange-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.svc-full-name {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}

.svc-full-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

.svc-full-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.svc-full-tag {
  background: var(--orange-light);
  color: var(--orange-dark);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.cg-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 16px rgba(244, 123, 32, 0.07);
  border: 1px solid #F0E8DF;
  transition: all 0.3s;
  cursor: pointer;
}

.cg-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--orange-mid);
}

.cg-hdr {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.cg-av {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cg-nm {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--navy);
}

.cg-loc {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

.cg-ok {
  margin-left: auto;
  color: var(--orange);
  font-size: 1.1rem;
}

.cg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}

.cg-tag {
  background: var(--warm-cream);
  color: var(--brown);
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 500;
}

.cg-tag.o {
  background: var(--orange-light);
  color: var(--orange-dark);
}

.cg-ft {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--warm-cream);
}

.cg-rate {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.93rem;
}

.cg-rate span {
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--text-light);
}

.cg-stars {
  color: var(--amber);
  font-size: 0.8rem;
}

/* WHO */
.who-hero {
  background: linear-gradient(135deg, #3D2A1E 0%, #5C3820 100%);
  color: white;
  padding: 70px 7%;
}

.who-hero h1 {
  font-family: 'Noto Serif TC', serif;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.who-hero p {
  opacity: 0.8;
  font-size: 1.05rem;
  max-width: 540px;
  line-height: 1.8;
}

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

.who-card {
  background: white;
  border-radius: 22px;
  padding: 36px 26px;
  border: 2px solid #F0E8DF;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.who-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.who-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--orange-mid);
}

.who-card:hover::before {
  transform: scaleX(1);
}

.who-emoji {
  font-size: 3.2rem;
  margin-bottom: 18px;
  display: block;
}

.who-name {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
}

.who-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.who-needs {
  background: var(--warm-cream);
  border-radius: 16px;
  padding: 24px;
  margin-top: 18px;
  text-align: left;
}

.who-needs-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.who-needs ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.who-needs ul li {
  font-size: 0.83rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.who-needs ul li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

.who-diff {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  border-radius: 22px;
  padding: 50px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.who-diff-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.3;
}

.who-diff-desc {
  opacity: 0.88;
  line-height: 1.8;
}

.who-diff-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.who-diff-stat {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

.who-diff-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.who-diff-lbl {
  font-size: 0.82rem;
  opacity: 0.82;
  margin-top: 4px;
}

/* HOW */
.how-hero {
  background: linear-gradient(135deg, var(--amber) 0%, var(--orange) 100%);
  color: white;
  padding: 70px 7%;
}

.how-hero h1 {
  font-family: 'Noto Serif TC', serif;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.how-hero p {
  opacity: 0.85;
  font-size: 1.05rem;
  max-width: 540px;
  line-height: 1.8;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 70px;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(244, 123, 32, 0.15));
}

.how-step {
  text-align: center;
  padding: 0 18px;
  position: relative;
  z-index: 1;
}

.how-step-n {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 22px;
  box-shadow: 0 0 0 8px rgba(244, 123, 32, 0.15);
  transition: transform 0.3s;
}

.how-step:hover .how-step-n {
  transform: scale(1.15);
}

.how-step-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.how-step-desc {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.how-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.how-feat {
  background: white;
  border-radius: 18px;
  padding: 28px;
  border: 2px solid #F0E8DF;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.3s;
}

.how-feat:hover {
  border-color: var(--orange-mid);
  box-shadow: var(--shadow);
}

.how-feat-ico {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.how-feat-title {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 1rem;
}

.how-feat-desc {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.how-app-banner {
  background: var(--navy);
  border-radius: 22px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.how-app-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  margin-bottom: 10px;
}

.how-app-desc {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 22px;
}

.how-app-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.how-qr-box {
  background: white;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  min-width: 160px;
}

.qr-code {
  width: 120px;
  height: 120px;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 2px;
  margin: 0 auto 10px;
}

.qr-cell {
  border-radius: 2px;
}

.how-qr-label {
  font-size: 0.78rem;
  color: var(--text-mid);
  font-weight: 600;
}

/* FAQ */
.faq-hero {
  background: linear-gradient(135deg, #3D2A1E 0%, var(--orange-dark) 100%);
  color: white;
  padding: 70px 7%;
  text-align: center;
}

.faq-hero h1 {
  font-family: 'Noto Serif TC', serif;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.faq-hero p {
  opacity: 0.8;
  font-size: 1.05rem;
}

.faq-cats {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.faq-cat {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 600;
  transition: all 0.2s;
  font-family: 'Noto Sans TC', sans-serif;
}

.faq-cat.active,
.faq-cat:hover {
  background: white;
  color: var(--orange);
  border-color: white;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: white;
  border-radius: 16px;
  border: 2px solid #F0E8DF;
  overflow: hidden;
  transition: all 0.25s;
}

.faq-item:hover {
  border-color: var(--orange-mid);
}

.faq-item.open {
  border-color: var(--orange);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  gap: 14px;
}

.faq-q-text {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--navy);
}

.faq-arrow {
  width: 28px;
  height: 28px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--orange);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--orange);
  color: white;
}

.faq-a {
  display: none;
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-contact {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 22px;
  padding: 50px;
  text-align: center;
  color: white;
}

.faq-contact h2 {
  font-family: 'Noto Serif TC', serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.faq-contact p {
  opacity: 0.85;
  margin-bottom: 28px;
  line-height: 1.8;
}

.faq-contact-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ABOUT */
.about-hero {
  background: linear-gradient(135deg, var(--amber) 0%, var(--orange) 60%, var(--orange-dark) 100%);
  color: white;
  padding: 70px 7%;
}

.about-hero h1 {
  font-family: 'Noto Serif TC', serif;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.about-hero p {
  opacity: 0.9;
  font-size: 1.1rem;
  max-width: 580px;
  line-height: 1.8;
}

.about-story {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-story p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.9;
}

.about-origin {
  background: var(--orange-light);
  border: 1.5px solid rgba(244, 123, 32, 0.2);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-origin-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-dark);
}

.about-origin-text {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.05rem !important;
  font-weight: 700;
  color: var(--navy) !important;
  line-height: 1.7 !important;
}

.about-blockquote {
  border-left: 4px solid var(--orange);
  padding: 14px 20px;
  font-family: 'Noto Serif TC', serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.7;
  background: var(--warm-cream);
  border-radius: 0 10px 10px 0;
}

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

.milestone-card {
  background: white;
  border-radius: 20px;
  padding: 28px 24px;
  border: 2px solid #F0E8DF;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s;
}

.milestone-card:hover {
  border-color: var(--orange-mid);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.milestone-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  width: fit-content;
}

.milestone-status.live {
  background: #E8F8EE;
  color: #1A8A3A;
}

.milestone-status.wip {
  background: var(--amber);
  color: white;
  border-radius: 0 5px 5px 0;
  padding: 3px 10px;
  position: relative;
  margin-left: 14px;
  font-size: 0.72rem;
  gap: 5px;
}

.milestone-status.wip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  width: 14px;
  background: var(--amber);
  clip-path: polygon(100% 0%, 100% 100%, 0% 50%);
}

.milestone-status.plan {
  background: var(--orange-light);
  color: var(--orange-dark);
}

.milestone-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy);
}

.milestone-desc {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
}

.about-closing {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-closing h3 {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
}

.about-closing p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.9;
}

.about-promise {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  border-radius: 14px;
  padding: 24px 28px;
  font-family: 'Noto Serif TC', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

@media(max-width:768px) {
  .milestone-grid {
    grid-template-columns: 1fr;
  }
}

/* CARE SCENARIOS */
.care-hero {
  background: linear-gradient(135deg, #3D2A1E 0%, var(--orange-dark) 100%);
  color: white;
  padding: 70px 7%;
}

.care-hero h1 {
  font-family: 'Noto Serif TC', serif;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.care-hero p {
  opacity: 0.85;
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.8;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.scenario-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 2px solid #F0E8DF;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s;
}

.scenario-card:hover {
  border-color: var(--orange-mid);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.sc-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.sc-quote {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.sc-headline {
  font-family: 'Noto Serif TC', serif;
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.55;
}

.sc-problem {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.sc-solution {
  background: var(--orange-light);
  border-left: 3px solid var(--orange);
  border-radius: 0 10px 10px 0;
  padding: 14px 16px;
}

.sc-solution-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange-dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.sc-solution-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.sc-cta {
  align-self: flex-start;
  margin-top: auto;
}

/* BLOG */
.news-hero {
  background: linear-gradient(135deg, var(--amber) 0%, var(--orange) 100%);
  color: white;
  padding: 60px 7%;
}

.news-hero h1 {
  font-family: 'Noto Serif TC', serif;
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.news-body {
  padding: 40px 7%;
}

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

.news-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(244, 123, 32, 0.07);
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid #F0E8DF;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--orange-mid);
}

.news-card-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.news-card-body {
  padding: 18px;
}

.news-card-ttl {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 8px;
}

.news-card-desc {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.news-card-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* NEWS FILTER BAR */
.news-filter-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.news-filter-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-filter-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
}

.news-filter-select {
  appearance: none;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F47B20' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 1.5px solid #E8D5C4;
  border-radius: 10px;
  padding: 8px 36px 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: border-color 0.2s;
  font-family: inherit;
}

.news-filter-select:hover,
.news-filter-select:focus {
  border-color: var(--orange);
  outline: none;
}

/* CATEGORY BADGES */
.news-cat-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.badge-news {
  background: rgba(14, 100, 200, 0.1);
  color: #0E64C8;
}

.badge-blog {
  background: var(--orange-light);
  color: var(--orange-dark);
}

/* BLOG POST */
.article-hero {
  max-width: 900px;
  margin: 0 auto;
}

.article-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.article-meta {
  color: #7B6155;
  margin-bottom: 18px;
}

.article-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}

.article-content {
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.back-link {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  text-decoration: none;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatMini1 {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-7px) rotate(1deg);
  }
}

@keyframes floatMini2 {

  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-9px) rotate(-2deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .how-steps::before {
    display: none;
  }

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

  .who-diff {
    grid-template-columns: 1fr;
  }
}

@media(max-width:900px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media(max-width:768px) {
  nav {
    padding: 0 4%;
  }

  .nav-links {
    display: none;
  }

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

  .hero-right {
    display: none;
  }

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

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

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

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

  .svc-full-grid {
    grid-template-columns: 1fr;
  }

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

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

  .how-features {
    grid-template-columns: 1fr;
  }

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

  .how-app-banner {
    grid-template-columns: 1fr;
  }

  .faq-contact-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media(max-width:600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 90px 6% 40px;
  }
}
