@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Noto+Sans+TC:wght@400;500;700;800;900&display=swap");

:root {
  color-scheme: light;
  --office-bg: #f6f2ea;
  --office-card: rgba(255, 255, 255, 0.94);
  --office-card-strong: #ffffff;
  --office-line: rgba(34, 62, 52, 0.12);
  --office-text: #17332d;
  --office-muted: #66756f;
  --office-deep: #18362f;
  --office-accent: #2d7a64;
  --office-accent-soft: #ecf7f1;
  --office-gold: #cba56a;
  --office-shadow: 0 22px 60px rgba(34, 62, 52, 0.12);
  --office-shadow-strong: 0 26px 72px rgba(27, 56, 47, 0.18);
  --office-radius: 16px;
  --office-radius-lg: 28px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--office-text);
  background:
    radial-gradient(circle at top left, rgba(203, 165, 106, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(45, 122, 100, 0.12), transparent 26%),
    linear-gradient(180deg, #fbf8f2 0%, var(--office-bg) 100%);
  font-family: "Noto Sans TC", sans-serif;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.office-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.office-topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(16px);
  background: rgba(248, 243, 235, 0.85);
  border-bottom: 1px solid rgba(24, 54, 47, 0.08);
}

.office-topbar .office-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

.office-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.office-brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--office-accent), #214b3f);
  box-shadow: 0 12px 26px rgba(45, 122, 100, 0.26);
}

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

.office-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--office-muted);
  font-weight: 700;
}

.office-nav a.active,
.office-nav a:hover {
  color: var(--office-deep);
  background: rgba(24, 54, 47, 0.08);
}

.office-cta-link {
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--office-accent), #1f5b49);
  box-shadow: 0 14px 28px rgba(45, 122, 100, 0.24);
}

.office-page {
  padding: 42px 0 64px;
}

.office-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  padding: 42px;
  border: 1px solid rgba(24, 54, 47, 0.09);
  border-radius: var(--office-radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 247, 0.94)),
    #fff;
  box-shadow: var(--office-shadow);
}

.office-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 58%, rgba(203, 165, 106, 0.12) 58% 70%, transparent 70%),
    radial-gradient(circle at top right, rgba(45, 122, 100, 0.12), transparent 24%);
  pointer-events: none;
}

.office-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--office-accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.office-kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.office-hero h1,
.office-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.office-subtitle {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--office-muted);
  font-size: 18px;
  line-height: 1.8;
}

.office-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.office-stat {
  padding: 18px 18px 16px;
  border: 1px solid rgba(24, 54, 47, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.office-stat strong {
  display: block;
  font-size: 26px;
}

.office-stat span {
  display: block;
  margin-top: 4px;
  color: var(--office-muted);
  font-size: 14px;
}

.office-hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  align-content: start;
}

.office-hero-card,
.office-section-card,
.office-plan,
.office-mini-card,
.office-note-card {
  border: 1px solid var(--office-line);
  border-radius: var(--office-radius);
  background: var(--office-card);
  box-shadow: var(--office-shadow);
}

.office-hero-card {
  padding: 22px;
}

.office-hero-card strong {
  display: block;
  font-size: 15px;
  color: var(--office-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.office-hero-card h2 {
  margin: 10px 0 12px;
  font-size: 28px;
  line-height: 1.2;
}

.office-hero-card p {
  margin: 0;
  color: var(--office-muted);
  line-height: 1.7;
}

.office-hero-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.office-hero-points li {
  display: flex;
  gap: 10px;
  color: var(--office-text);
  font-weight: 700;
}

.office-hero-points li span {
  color: var(--office-muted);
  font-weight: 500;
}

.office-section {
  margin-top: 30px;
}

.office-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.office-section-heading p {
  margin: 0 0 6px;
  color: var(--office-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.office-section-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}

.office-section-heading span {
  max-width: 460px;
  color: var(--office-muted);
  line-height: 1.7;
}

.office-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.office-plan {
  position: relative;
  padding: 24px;
  min-height: 100%;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.office-plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--office-shadow-strong);
  border-color: rgba(45, 122, 100, 0.2);
}

.office-plan.team {
  transform: scale(1.05);
  z-index: 1;
  background: linear-gradient(180deg, rgba(239, 248, 241, 0.98), rgba(255, 255, 255, 0.98));
  border-color: rgba(45, 122, 100, 0.28);
  box-shadow: var(--office-shadow-strong);
}

.office-popular {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #357f68, #1a4d3f);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.office-plan-kicker {
  margin: 18px 0 4px;
  color: var(--office-accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.office-plan h3 {
  margin: 0;
  font-size: 31px;
  font-family: "Cormorant Garamond", serif;
}

.office-plan .office-tagline {
  margin: 6px 0 18px;
  color: var(--office-muted);
  min-height: 46px;
}

.office-price {
  display: flex;
  align-items: end;
  gap: 8px;
  margin-bottom: 18px;
}

.office-price strong {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.office-price span {
  padding-bottom: 6px;
  color: var(--office-muted);
  font-size: 14px;
  font-weight: 700;
}

.office-suit {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(24, 54, 47, 0.04);
  color: var(--office-text);
  font-weight: 700;
}

.office-suit small {
  display: block;
  margin-bottom: 6px;
  color: var(--office-muted);
  font-weight: 600;
}

.office-plan-group + .office-plan-group {
  margin-top: 18px;
}

.office-plan-group h4 {
  margin: 0 0 10px;
  color: var(--office-text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.office-feature-list,
.office-badge-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.office-feature-list li,
.office-badge-list li {
  color: var(--office-text);
  line-height: 1.6;
}

.office-feature-list li span,
.office-badge-list li span {
  color: var(--office-muted);
}

.office-badge-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(24, 54, 47, 0.04);
  font-weight: 700;
}

.office-button-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.office-button,
.office-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.office-button {
  color: #fff;
  background: linear-gradient(135deg, var(--office-accent), #1f5b49);
  box-shadow: 0 14px 28px rgba(45, 122, 100, 0.24);
}

.office-button-secondary {
  border: 1px solid rgba(24, 54, 47, 0.12);
  color: var(--office-deep);
  background: rgba(255, 255, 255, 0.86);
}

.office-button:hover,
.office-button-secondary:hover {
  transform: translateY(-2px);
}

.office-section-card {
  padding: 28px;
}

.office-contract-grid,
.office-upgrade-grid,
.office-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.office-support-grid > :only-child,
.office-support-grid > :nth-child(3):last-child {
  grid-column: span 2;
}

.office-mini-card {
  padding: 24px;
}

.office-mini-card h3 {
  margin: 10px 0 8px;
  font-size: 30px;
  font-family: "Cormorant Garamond", serif;
}

.office-mini-card p {
  margin: 0;
  color: var(--office-muted);
  line-height: 1.7;
}

.office-mini-card .office-price-inline {
  display: block;
  margin-top: 14px;
  font-size: 28px;
  font-weight: 900;
}

.office-upgrade-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.office-upgrade-grid .office-mini-card {
  position: relative;
  overflow: hidden;
}

.office-upgrade-grid .office-mini-card::after {
  content: "";
  position: absolute;
  inset: auto -24px -40px auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(45, 122, 100, 0.12), transparent 68%);
}

.office-note-card {
  padding: 24px;
}

.office-note-card h3 {
  margin: 0 0 8px;
  font-size: 28px;
  font-family: "Cormorant Garamond", serif;
}

.office-note-card p {
  margin: 0;
  color: var(--office-muted);
  line-height: 1.8;
}

.office-note-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.office-note-card li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(24, 54, 47, 0.04);
  font-weight: 700;
}

.office-compare-card {
  padding: 24px;
  border: 1px solid var(--office-line);
  border-radius: var(--office-radius);
  background: var(--office-card);
  box-shadow: var(--office-shadow);
}

.office-compare-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(24, 54, 47, 0.1);
  background: rgba(255, 255, 255, 0.92);
}

.office-compare-table th,
.office-compare-table td {
  padding: 16px 14px;
  border-bottom: 1px solid rgba(24, 54, 47, 0.08);
  text-align: left;
}

.office-compare-table th {
  color: var(--office-deep);
  background: rgba(24, 54, 47, 0.05);
  font-size: 14px;
  font-weight: 900;
}

.office-compare-table tr:last-child td {
  border-bottom: 0;
}

.office-compare-table td:nth-child(2),
.office-compare-table td:nth-child(3) {
  font-weight: 700;
}

.office-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.office-package-card {
  padding: 24px;
  border: 1px solid var(--office-line);
  border-radius: var(--office-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 243, 0.94));
  box-shadow: var(--office-shadow);
}

.office-package-card h3 {
  margin: 10px 0 8px;
  font-size: 30px;
  font-family: "Cormorant Garamond", serif;
}

.office-package-card p {
  margin: 0;
  color: var(--office-muted);
  line-height: 1.7;
}

.office-package-card .office-price-inline {
  display: inline-block;
  margin-top: 14px;
}

.office-footer-cta .office-button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.office-footer-cta {
  margin-top: 28px;
  padding: 28px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #17332d, #285848 60%, #2d7a64);
  box-shadow: var(--office-shadow-strong);
}

.office-footer-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.office-footer-cta h3 {
  margin: 8px 0 10px;
  font-size: 40px;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}

.office-inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.office-inline-list li {
  padding: 9px 12px;
  border-radius: 999px;
  color: #f7efe4;
  background: rgba(255, 255, 255, 0.1);
}

.office-page-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.office-page-links a {
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--office-deep);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.office-page-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.office-footer {
  padding: 0 0 48px;
}

.office-footer .office-shell {
  color: var(--office-muted);
  font-size: 14px;
}

.office-footer-note {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

.office-home {
  background:
    radial-gradient(circle at top left, rgba(203, 165, 106, 0.06), transparent 24%),
    linear-gradient(180deg, #f7f5f0 0%, #f1ede5 100%);
}

.office-home-topbar {
  background: rgba(248, 245, 239, 0.95);
  box-shadow: 0 1px 0 rgba(24, 54, 47, 0.06);
}

.office-brand-stack {
  gap: 12px;
}

.office-brand-logo-link {
  display: inline-flex;
  align-items: center;
}

.office-brand-logo-rt {
  display: block;
  width: auto;
  height: 60px;
}

.office-brand-copy {
  display: grid;
  gap: 2px;
}

.office-brand-copy strong {
  font-size: 19px;
  line-height: 1;
}

.office-brand-copy small {
  color: var(--office-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.office-brand-mark-apple {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(45, 122, 100, 0.62);
  box-shadow: none;
}

.office-brand-mark-apple::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 18px;
  width: 9px;
  height: 6px;
  border-radius: 9px 9px 0 9px;
  background: rgba(45, 122, 100, 0.82);
  transform: rotate(-36deg);
}

.office-brand-mark-apple::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 14px;
  width: 2px;
  height: 7px;
  background: rgba(45, 122, 100, 0.82);
  border-radius: 999px;
  transform: rotate(-14deg);
}

.office-home-nav {
  gap: 18px;
}

.office-home-nav a {
  padding-inline: 4px;
  border-radius: 10px;
  background: transparent;
  font-size: 15px;
}

.office-home-nav .office-cta-link {
  padding-inline: 18px;
  font-size: 15px;
}

.office-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: center;
  margin-top: 10px;
}

.office-home-hero-copy {
  padding: 26px 6px 18px 6px;
}

.office-home-eyebrow {
  margin: 0 0 14px;
  color: var(--office-muted);
  font-size: 16px;
  font-weight: 700;
}

.office-home-hero-copy h1 {
  margin: 0;
  font-size: clamp(52px, 6vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.office-home-lead {
  margin: 14px 0 0;
  color: #41524b;
  font-size: 21px;
  font-weight: 700;
}

.office-home-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.office-home-feature {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.office-home-feature strong {
  color: var(--office-accent);
  font-size: 24px;
  line-height: 1;
}

.office-home-feature span {
  color: #52625c;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
}

.office-home-hero-media {
  position: relative;
}

.office-home-hero-image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 0 0 0 72px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0));
}

.office-home-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 245, 240, 0.95) 0%, rgba(247, 245, 240, 0.48) 28%, rgba(255, 255, 255, 0) 48%);
  pointer-events: none;
}

.office-home-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.office-home-hero-badge {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 1;
  min-width: 212px;
  padding: 14px 18px 12px;
  border-radius: 16px;
  color: #6f4d27;
  text-align: center;
  background: rgba(232, 209, 167, 0.97);
  transform: translateX(-50%);
  box-shadow: 0 18px 34px rgba(113, 77, 36, 0.18);
}

.office-home-hero-badge img {
  display: block;
  width: 100%;
  max-width: 208px;
  height: auto;
}

.office-home-insight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 14px;
  margin-top: 28px;
}

.office-home-card {
  border: 1px solid rgba(34, 62, 52, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(29, 54, 46, 0.06);
}

.office-home-card-head {
  margin-bottom: 18px;
  text-align: center;
}

.office-home-card-head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}

.office-home-card-head p {
  margin: 8px 0 0;
  color: var(--office-muted);
  font-size: 14px;
  font-weight: 700;
}

.office-home-calc-card {
  padding: 24px 22px 20px;
}

.office-home-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.office-home-choice-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.office-home-choice-group legend {
  margin-bottom: 12px;
  padding: 0;
  font-size: 13px;
  font-weight: 900;
}

.office-home-choice {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  margin-top: 8px;
  padding: 0 12px;
  border: 1px solid rgba(24, 54, 47, 0.12);
  border-radius: 12px;
  color: #53635d;
  background: #fff;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.office-home-choice input {
  accent-color: var(--office-accent);
}

.office-home-choice span {
  font-size: 13px;
  font-weight: 700;
}

.office-home-choice-active {
  border-color: rgba(45, 122, 100, 0.35);
  background: #f2f7f3;
  box-shadow: inset 0 0 0 1px rgba(45, 122, 100, 0.12);
}

.office-home-calc-action {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.office-home-calc-button {
  min-width: 190px;
  border: 0;
  cursor: pointer;
}

.office-home-result-card {
  padding: 18px 20px 20px;
  text-align: center;
}

.office-home-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #5a8d4f, #406f3d);
  font-size: 12px;
  font-weight: 900;
}

.office-home-result-icon {
  color: #79a255;
  font-size: 30px;
  line-height: 1;
}

.office-home-result-card h2 {
  margin: 8px 0 6px;
  font-size: 54px;
  font-family: "Cormorant Garamond", serif;
}

.office-home-result-subtitle {
  margin: 0;
  color: #40504a;
  font-size: 15px;
  font-weight: 700;
}

.office-home-result-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.office-home-result-stats div {
  padding: 0 4px;
}

.office-home-result-stats em,
.office-home-result-stats strong,
.office-home-result-stats span {
  display: block;
}

.office-home-result-stats em {
  color: #7da15d;
  font-style: normal;
  font-size: 20px;
}

.office-home-result-stats strong {
  color: var(--office-text);
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.35;
}

.office-home-result-stats span {
  margin-top: 4px;
  color: var(--office-muted);
  font-size: 12px;
  font-weight: 700;
}

.office-home-result-price {
  margin-top: 20px;
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: #eee7dc;
}

.office-home-result-price small,
.office-home-result-price strong {
  display: block;
}

.office-home-result-price small {
  color: var(--office-muted);
  font-size: 14px;
  font-weight: 700;
}

.office-home-result-price strong {
  margin-top: 8px;
  color: #1f5b49;
  font-size: 40px;
  line-height: 1;
}

.office-home-result-actions {
  justify-content: center;
}

.office-home-plan-section {
  margin-top: 30px;
}

.office-home-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.office-home-plan-card {
  position: relative;
  padding: 20px 16px 18px;
  border: 1px solid rgba(31, 55, 47, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(31, 55, 47, 0.06);
  text-align: center;
}

.office-home-plan-card-featured {
  border-color: rgba(203, 165, 106, 0.7);
  box-shadow: 0 18px 40px rgba(122, 94, 50, 0.12);
}

.office-home-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #efb54f, #d3942b);
  font-size: 12px;
  font-weight: 900;
  line-height: 28px;
  transform: translateX(-50%);
}

.office-home-plan-name {
  margin: 0;
  color: #618544;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.office-home-plan-card h3 {
  margin: 10px 0 8px;
  font-size: 22px;
  line-height: 1.2;
}

.office-home-plan-meta,
.office-home-plan-fruit {
  margin: 0;
  color: #465650;
  font-size: 14px;
  font-weight: 700;
}

.office-home-plan-fruit {
  margin-top: 8px;
}

.office-home-plan-icons {
  margin: 14px 0 18px;
  font-size: 22px;
  letter-spacing: 0.1em;
}

.office-home-plan-card .office-price {
  justify-content: center;
  margin-bottom: 18px;
}

.office-home-plan-card .office-button,
.office-home-plan-card .office-button-secondary {
  width: 100%;
}

.office-home-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 14px;
  margin-top: 14px;
}

.office-home-report-card,
.office-home-upgrade-card {
  padding: 22px;
}

.office-home-report-card .office-home-card-head,
.office-home-upgrade-card .office-home-card-head {
  text-align: left;
}

.office-home-report-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.office-home-report-metrics div {
  text-align: center;
}

.office-home-report-metrics strong,
.office-home-report-metrics span {
  display: block;
}

.office-home-report-metrics strong {
  color: #5f8449;
  font-size: 24px;
  line-height: 1;
}

.office-home-report-metrics span {
  margin-top: 10px;
  color: #4f6059;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.office-home-inline-link {
  min-width: 0;
  margin-top: 16px;
}

.office-home-upgrade-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(190px, 0.72fr);
  gap: 20px;
  align-items: center;
}

.office-home-upgrade-list {
  display: grid;
  gap: 12px;
}

.office-home-upgrade-item {
  display: grid;
  gap: 4px;
}

.office-home-upgrade-item strong {
  color: var(--office-text);
  font-size: 17px;
}

.office-home-upgrade-item span {
  color: #6a786f;
  font-size: 14px;
  font-weight: 700;
}

.office-home-upgrade-media {
  overflow: hidden;
  border-radius: 16px;
  min-height: 210px;
}

.office-home-upgrade-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.office-home-brand-strip {
  margin-top: 22px;
  text-align: center;
}

.office-home-brand-head h2 {
  margin: 0;
  font-size: 34px;
}

.office-home-brand-head p {
  margin: 8px 0 0;
  color: var(--office-muted);
  font-weight: 700;
}

.office-home-brand-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
  color: rgba(24, 54, 47, 0.42);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.office-home-cta-band {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 14px 18px;
  border: 1px solid rgba(203, 165, 106, 0.34);
  border-radius: 10px;
  background: rgba(255, 249, 237, 0.92);
}

.office-home-cta-band-fruits {
  color: #d6a247;
  font-size: 24px;
}

.office-home-cta-band-copy span {
  color: #6b614f;
  font-size: 13px;
  font-weight: 900;
}

.office-home-cta-band-copy h2 {
  margin: 4px 0 0;
  font-size: 17px;
  font-family: inherit;
  font-weight: 700;
}

.office-home-cta-band-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .office-home-hero,
  .office-home-insight-grid,
  .office-home-story-grid {
    grid-template-columns: 1fr;
  }

  .office-home-plan-grid,
  .office-home-brand-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .office-home-feature-strip,
  .office-home-choice-grid,
  .office-home-result-stats,
  .office-home-report-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .office-home-hero-image,
  .office-home-hero-image img {
    min-height: 420px;
  }

  .office-home-cta-band {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .office-hero,
  .office-pricing-grid,
  .office-upgrade-grid,
  .office-contract-grid,
  .office-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .office-plan.team {
    transform: none;
  }
}

@media (max-width: 760px) {
  .office-brand-copy strong {
    font-size: 16px;
  }

  .office-home-nav {
    gap: 8px;
  }

  .office-brand-logo-rt {
    height: 48px;
  }

  .office-home-nav a {
    flex: 0 0 auto;
  }

  .office-home-hero-copy {
    padding: 0;
  }

  .office-home-lead {
    font-size: 19px;
  }

  .office-home-feature-strip,
  .office-home-choice-grid,
  .office-home-result-stats,
  .office-home-plan-grid,
  .office-home-report-metrics,
  .office-home-brand-logos {
    grid-template-columns: 1fr;
  }

  .office-home-upgrade-layout {
    grid-template-columns: 1fr;
  }

  .office-home-hero-image,
  .office-home-hero-image img {
    min-height: 320px;
    border-radius: 24px;
  }

  .office-home-hero-badge {
    min-width: 0;
    width: calc(100% - 24px);
  }

  .office-home-card,
  .office-home-plan-card {
    border-radius: 20px;
  }

  .office-home-cta-band-actions .office-button,
  .office-home-cta-band-actions .office-button-secondary,
  .office-home-inline-link {
    width: 100%;
  }

  .office-topbar .office-shell,
  .office-section-heading {
    align-items: start;
    flex-direction: column;
  }

  .office-page {
    padding-top: 24px;
  }

  .office-shell {
    width: min(100% - 24px, 1180px);
  }

  .office-hero,
  .office-pricing-grid,
  .office-contract-grid,
  .office-upgrade-grid,
  .office-package-grid,
  .office-support-grid,
  .office-stats {
    grid-template-columns: 1fr;
  }

  .office-support-grid > :only-child,
  .office-support-grid > :nth-child(3):last-child {
    grid-column: auto;
  }

  .office-plan.team {
    order: -4;
    transform: none;
  }

  .office-plan.starter {
    order: -3;
  }

  .office-plan.office {
    order: -2;
  }

  .office-plan.corporate {
    order: -1;
  }

  .office-hero,
  .office-section-card,
  .office-footer-cta,
  .office-mini-card,
  .office-plan {
    padding: 22px;
  }

  .office-nav {
    width: 100%;
  }

  .office-nav a,
  .office-cta-link {
    flex: 1 1 auto;
    text-align: center;
  }

  .office-price strong {
    font-size: 42px;
  }

  .office-compare-table,
  .office-compare-table tbody,
  .office-compare-table tr,
  .office-compare-table td {
    display: block;
    width: 100%;
  }

  .office-compare-table thead {
    display: none;
  }

  .office-compare-table tr {
    padding: 10px 0;
    border-bottom: 1px solid rgba(24, 54, 47, 0.08);
  }

  .office-compare-table td {
    padding: 8px 0;
    border-bottom: 0;
  }

  .office-compare-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: var(--office-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}
