/* ============================================================
   rentclawmachine — brand overrides (loaded AFTER styles.css)
   Direction: LIGHT · AIRY · MODERN · FRIENDLY.
   White / soft-lavender backgrounds, comfortable reading,
   Space Grotesk display + Inter body, a confident violet accent
   with a pink pop used sparingly, soft rounded cards.
   References: sideshift.app · autosdesign.com · hkclawmachine.com.
   ============================================================ */
:root {
  /* ---- palette: light & airy ---- */
  --paper: #FFFFFF;          /* page background */
  --paper-2: #F4F7FF;        /* very light lavender tint for alternating sections */
  --ink: #221C33;            /* soft dark text — comfortable, not pure black */
  --ink-soft: #6B6480;       /* muted lavender-grey */
  --white: #FFFFFF;          /* shared "white" token = white */

  --brand: #2F6BFF;          /* violet — the primary accent */
  --brand-dark: #2456E0;
  --brand-darker: #1D4ED8;
  --brand-tint: #EAF1FF;     /* pale violet wash */
  --brand-tint-2: #C9DBFF;   /* soft violet ring */

  --accent: #FF7A45;         /* pink — secondary pop, used sparingly */
  --accent-dark: #E8602E;

  --line: #ECEAF5;           /* subtle hairline for borders/dividers */
  --line-soft: #ECEAF5;

  /* display = Space Grotesk; body = Inter; CJK = Noto Sans TC */
  --font-display: "Space Grotesk", "Noto Sans TC", system-ui, -apple-system, "PingFang HK", "Microsoft JhengHei", sans-serif;
  --font-body: "Inter", "Noto Sans TC", system-ui, -apple-system, "PingFang HK", "Microsoft JhengHei", sans-serif;

  /* ---- soft, airy depth (no hard offset shadows) ---- */
  --shadow-sm: 0 6px 18px -10px rgba(35, 75, 200, .16);
  --shadow-md: 0 12px 32px -12px rgba(35, 75, 200, .18);
  --shadow-lg: 0 22px 48px -18px rgba(35, 75, 200, .22);
  --radius: 16px;
}

/* light page, comfortable body type */
body {
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* generous, consistent heading rhythm across all 6 pages */
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

/* ============================================================
   Chrome: topbar / brandstrip / nav — light, clean, modern
   ============================================================ */
.topbar { background: var(--paper); color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.topbar a, .topbar__item { color: var(--ink-soft); }
.topbar__item .ico { color: var(--brand); }
.topbar__item:hover { color: var(--brand); }
.topbar__search input { font-family: var(--font-body); font-size: 13px; }

.brandstrip { background: var(--paper); border-bottom: 1px solid var(--line); }
.logo__word b { font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
.logo__word > span { font-family: var(--font-display); font-weight: 600; letter-spacing: .14em; color: var(--brand); }

.nav { background: var(--paper); border-top: 0; border-bottom: 1px solid var(--line); box-shadow: 0 1px 0 rgba(0,0,0,.02); }
.nav__link { font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: 0; color: var(--ink); border-radius: 10px; }
.nav__link:hover { color: var(--brand); background: var(--brand-tint); }
.nav__item.has-dropdown .nav__link[aria-current="page"],
.nav__link[aria-current="page"] { color: var(--brand); }
.nav__lang .globe { fill: var(--brand); }
.dropdown { border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md); }
.dropdown--lang a { font-family: var(--font-body); font-size: 14px; }
.dropdown--lang a.is-active { background: var(--brand-tint); color: var(--brand-darker); }
.dropdown--lang a.is-active::after { content: "✓"; color: var(--brand-darker); }

/* ============================================================
   Buttons — solid rounded violet; secondary = white w/ violet ring
   ============================================================ */
.btn { border-radius: 12px; font-weight: 600; font-family: var(--font-display); }
.btn--solid {
  background: var(--brand);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 20px -8px rgba(123, 47, 247, .5);
}
.btn--solid:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -8px rgba(123, 47, 247, .55);
}
.btn--outline {
  background: var(--paper);
  color: var(--brand-darker);
  border: 1.5px solid var(--brand);
  box-shadow: none;
}
.btn--outline:hover {
  background: var(--brand-tint);
  color: var(--brand-darker);
  transform: translateY(-2px);
}
.btn--white { background: #fff; color: var(--brand-darker); border: 0; box-shadow: var(--shadow-sm); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.7); box-shadow: none; }
.btn--ghost:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }

/* shared shimmer sweep reads odd here — keep it off */
.motion .btn--solid::after { display: none; }

/* ---------- numbered feature icons (shared .focus) — soft violet chip ---------- */
.focus__ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-tint);
  color: var(--brand-darker);
  border: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}
.section-head__eyebrow { font-family: var(--font-display); font-weight: 600; color: var(--brand); letter-spacing: .12em; text-transform: uppercase; }
.focus__more { color: var(--brand-darker); font-weight: 600; }

/* ---------- hero chips (shared .chip) — soft rounded trust pills ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 26px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
  color: var(--ink);
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 15px;
  box-shadow: var(--shadow-sm);
}
.chip i { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); flex: none; }

/* ============================================================
   Trust / stat strip — light lavender band, violet numerals
   ============================================================ */
.trust { padding: 0; background: var(--brand-tint); color: var(--ink); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 48px 28px; }
.trust__item { text-align: center; border-left: 0; padding-left: 0; }
.trust__num { font-family: var(--font-display); font-weight: 900; font-size: 46px; line-height: 1; letter-spacing: -.03em; color: var(--brand); }
.trust__num small { font-size: 20px; font-weight: 700; margin-left: 2px; }
.trust__label { font-family: var(--font-body); font-size: 14px; margin-top: 10px; color: var(--ink-soft); letter-spacing: 0; }
@media (max-width: 700px) {
  .trust__grid { grid-template-columns: 1fr 1fr; gap: 30px 18px; }
  .trust__num { font-size: 34px; }
}

/* ============================================================
   Pricing / packages — soft white cards on a light lavender band
   ============================================================ */
.pricing { padding: 90px 0; background: var(--paper-2); }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1040px; margin: 0 auto; align-items: stretch; }
.price-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card--featured {
  background: var(--paper);
  border: 1.5px solid var(--brand);
  box-shadow: var(--shadow-md);
}
.price-card--featured .price-card__price { color: var(--brand-darker); }
.price-card__tag {
  position: absolute; top: -13px; left: 26px;
  background: var(--brand); color: #fff;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  padding: 6px 14px; border-radius: 999px;
  border: 0;
  box-shadow: 0 6px 16px -6px rgba(123, 47, 247, .5);
}
.price-card__name { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -.01em; color: var(--ink); margin: 0 0 6px; }
.price-card__desc { font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 18px; }
.price-card__price { font-family: var(--font-display); font-weight: 700; font-size: 36px; line-height: 1.05; color: var(--brand-darker); margin: 0 0 4px; letter-spacing: -.02em; }
.price-card__price small { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.price-card__per { font-family: var(--font-body); font-size: 13px; color: var(--ink-soft); margin: 0 0 20px; letter-spacing: 0; }
.price-card__list { display: grid; gap: 12px; margin: 0 0 24px; }
.price-card__list li { position: relative; padding-left: 28px; font-size: 14.5px; line-height: 1.5; color: var(--ink); }
.price-card__list li::before {
  content: ""; position: absolute; left: 0; top: 1px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--brand-tint);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat;
  mask: none;
}
/* solid violet check sitting on a soft tint dot */
.price-card__list li::after {
  content: ""; position: absolute; left: 3px; top: 4px;
  width: 12px; height: 12px;
  background: var(--brand);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat;
}
.price-card__cta { margin-top: auto; width: 100%; }
@media (max-width: 880px) { .pricing__grid { grid-template-columns: 1fr; max-width: 460px; } }

/* ============================================================
   Testimonials (shared .tmonials) — soft white cards on white
   ============================================================ */
.tmonials { padding: 90px 0; background: var(--paper); }
.tmonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tmonial {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.tmonial__stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.tmonial__quote { font-size: 15.5px; line-height: 1.75; color: var(--ink); margin: 0 0 20px; }
.tmonial__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tmonial__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--brand); border: 0;
  color: #fff; font-weight: 700; font-family: var(--font-display);
  display: grid; place-items: center; font-size: 18px;
}
.tmonial__name { font-weight: 700; font-family: var(--font-display); font-size: 15px; color: var(--ink); }
.tmonial__role { font-family: var(--font-body); font-size: 13px; color: var(--ink-soft); }
@media (max-width: 880px) { .tmonials__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ============================================================
   Final contact CTA (shared .contact) — soft violet→pink gradient
   This is the ONE rich accent moment.
   ============================================================ */
.contact { background: linear-gradient(135deg, #2F6BFF 0%, #4F86FF 55%, #FF7A45 130%); color: #fff; }
.contact__inner { text-align: center; padding: 80px 28px; }
.contact__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 4.6vw, 44px); letter-spacing: -.02em; margin: 0 0 14px; line-height: 1.08; }
.contact__sub { font-size: 17.5px; line-height: 1.7; opacity: .96; margin: 0 auto 30px; max-width: 620px; }
.contact__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn--wa { background: #25d366; color: #06301a; border: 0; box-shadow: 0 8px 20px -8px rgba(0,0,0,.35); }
.btn--wa:hover { filter: brightness(1.04); transform: translateY(-2px); box-shadow: 0 12px 26px -8px rgba(0,0,0,.4); }
.contact__meta { margin-top: 26px; font-family: var(--font-body); font-size: 14.5px; opacity: .95; }
.contact__meta a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* hero glow killed (no gradient mush behind the hero) */
.hero__glow { display: none !important; }

/* ============================================================
   Contact page — info cards + enquiry form (soft, light)
   ============================================================ */
.cgrid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: start; }
.cinfo { display: flex; flex-direction: column; gap: 16px; }
.cinfo__card {
  display: block;
  padding: 24px 26px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.cinfo__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cinfo__h { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink); margin: 0 0 6px; }
.cinfo__p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 8px; }
.cinfo__v { font-family: var(--font-body); font-size: 14.5px; font-weight: 600; color: var(--brand-darker); word-break: break-word; }

.cform {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.cform__title { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--ink); margin: 0 0 4px; }
.cform__sub { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 20px; }
.cfield { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.cfield label { font-family: var(--font-body); font-size: 13.5px; font-weight: 600; color: var(--ink); letter-spacing: 0; }
.cfield input,
.cfield textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.cfield textarea { resize: vertical; min-height: 120px; }
.cfield input:focus,
.cfield textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-tint); }
.cform__note { font-family: var(--font-body); font-size: 13px; color: var(--ink-soft); margin: 14px 0 0; }
.cform .btn { width: 100%; justify-content: center; }

@media (max-width: 820px) { .cgrid { grid-template-columns: 1fr; gap: 24px; } }

/* ============================================================
   Global focus ring — visible, on-brand, AA
   ============================================================ */
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }
</content>
