/* EuniceMed mockup v2 — spur.fit-style light gradient + confident type
   Bold colour lives in mid-page teal bands; heroes are airy gradients with dark ink type. */
@font-face {
  font-family: "Myriad Variable Concept";
  src: url("fonts/MyriadVariableConcept.woff2") format("woff2");
  font-weight: 300 900;
  font-stretch: 75% 125%;
  font-display: swap;
}

:root {
  --teal: #00B5CD;          /* Pantone 7466c */
  --teal-deep: #0092A8;
  --teal-tint: #E9F8FA;
  --ink: #16333B;           /* deep teal-slate for display type */
  --body: #44565D;
  --gray: #898989;          /* Pantone 423c */
  --line: #DFE9EC;
  --bg-soft: #F5FAFB;
  --mist-1: #F4FAFC;        /* hero gradient stops */
  --mist-2: #E3F2F6;
  --mist-3: #CFE9EF;
  --care: #A8AD3C;          /* Pantone 7746c */
  --protect: #5B7F95;       /* Pantone 5415c */
  --advance: #7A4D6F;       /* Pantone 5125c */
  --radius: 20px;
  --ease-pop: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Myriad Variable Concept", "Microsoft JhengHei", "PingFang TC", "Noto Sans TC", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--body); background: #fff; line-height: 1.7; font-weight: 400; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.16; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 680; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 620; }
h3 { font-size: 1.22rem; font-weight: 570; letter-spacing: -0.005em; }
p  { color: var(--body); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
@media (max-width: 760px) { section { padding: 64px 0; } }

.eyebrow { color: var(--teal-deep); font-weight: 680; letter-spacing: .16em; text-transform: uppercase; font-size: .78rem; }
.lead { font-size: 1.14rem; max-width: 62ch; font-weight: 420; }

/* concentric-arc brand texture */
.arcs-light { background-image: repeating-radial-gradient(circle at 100% -30%, rgba(0,181,205,.06) 0 26px, transparent 26px 60px); }
.arcs-on-teal { background-image: repeating-radial-gradient(circle at 100% -40%, rgba(255,255,255,.14) 0 28px, transparent 28px 64px); }

/* header */
header.site {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 28px; height: 74px; }
.nav .links { display: flex; gap: 26px; margin-left: auto; font-size: .95rem; font-weight: 500; color: #4B5B61; }
.nav .links a:hover { color: var(--teal-deep); }
.nav .links a.active { color: var(--teal-deep); }
.lang { color: var(--gray); font-size: .9rem; border-left: 1px solid var(--line); padding-left: 18px; }
.lang b { color: var(--ink); font-weight: 650; }

/* logo lockup */
.logo { display: inline-flex; align-items: center; gap: 8px; border: 2.5px solid var(--gray); border-radius: 10px; padding: 5px 12px; line-height: 1; }
.logo .word { color: var(--gray); font-weight: 680; letter-spacing: .12em; font-size: .86rem; }
.logo .word small { font-size: .5em; vertical-align: super; }
.logo .plus { color: var(--teal); font-weight: 800; font-size: 1.15rem; }
.logo.on-teal { border-color: #fff; }
.logo.on-teal .word { color: #fff; }

/* buttons — pill, semibold, soft shadow (spur.fit style) */
.btn { display: inline-block; border-radius: 999px; padding: 13px 30px; font-weight: 620; font-size: .95rem; letter-spacing: .01em; transition: transform .25s var(--ease-pop), box-shadow .25s var(--ease-out), background .2s ease; }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 8px 22px rgba(0,150,170,.28); }
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,150,170,.34); }
.btn-ghost { border: 1.5px solid rgba(0,146,168,.4); color: var(--teal-deep); background: rgba(255,255,255,.7); }
.btn-ghost:hover { background: var(--teal-tint); border-color: var(--teal); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--teal-deep); box-shadow: 0 8px 22px rgba(0,60,70,.18); }
.btn-white:hover { transform: translateY(-2px); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,.85); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,.14); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #0E252C; transform: translateY(-2px); }

/* hero — light gradient, dark confident type */
.hero {
  background: linear-gradient(160deg, var(--mist-1) 0%, var(--mist-2) 46%, var(--mist-3) 100%);
  padding: 108px 0 100px; position: relative; overflow: hidden;
}
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-radial-gradient(circle at 112% -40%, rgba(0,181,205,.05) 0 34px, transparent 34px 82px); }
.hero .container { position: relative; z-index: 1; }
.hero h1 { max-width: 22ch; }
.hero h1 .hl { color: var(--teal-deep); }
.hero .lead { margin: 24px 0 36px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

/* hero visual + floating annotation chips (signature element) */
.hero-visual { position: relative; }
.hero-visual .ph { border-radius: 26px; box-shadow: 0 30px 60px rgba(10,60,72,.16); }
.chip {
  position: absolute; display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.7); border-radius: 999px;
  padding: 9px 16px; font-size: .82rem; font-weight: 620; color: var(--ink);
  box-shadow: 0 10px 26px rgba(10,60,72,.16); white-space: nowrap;
  transition: transform .3s var(--ease-pop), box-shadow .3s var(--ease-out);
}
.chip:hover { transform: translateY(-3px) scale(1.03); }
.chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(0,181,205,.18); }
.trust { display: flex; align-items: center; gap: 14px; margin-top: 34px; font-size: .88rem; color: #5E6E74; font-weight: 500; }
.trust .avatars { display: flex; }
.trust .avatars span { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; background: linear-gradient(140deg, #BFE4EC, #8FCCD9); margin-left: -8px; }
.trust .avatars span:first-child { margin-left: 0; }

/* cards & grids */
.grid { display: grid; gap: 26px; }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .g3, .g4 { grid-template-columns: 1fr; } }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .3s var(--ease-pop), box-shadow .3s var(--ease-out), border-color .2s ease; }
.card:hover { border-color: rgba(0,181,205,.5); transform: translateY(-5px); box-shadow: 0 18px 40px rgba(10,60,72,.10); }
.card .body { padding: 20px 22px 24px; }
.card h3 { margin-bottom: 6px; }
.card p { font-size: .92rem; }

/* image placeholder */
.ph { background: linear-gradient(150deg, #EDF4F6, #DBE8EC); display: flex; align-items: center; justify-content: center; color: #A7B6BC; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 550; aspect-ratio: 4/3; }
.ph.wide { aspect-ratio: 16/7; }
.ph.tall { aspect-ratio: 3/4; }

/* collection badges */
.badge { display: inline-block; color: #fff; border-radius: 999px; font-size: .72rem; font-weight: 700; letter-spacing: .1em; padding: 4px 12px; text-transform: uppercase; }
.badge.care { background: var(--care); }
.badge.protect { background: var(--protect); }
.badge.advance { background: var(--advance); }

/* section headers */
.sec-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 44px; }
.sec-head h2 { max-width: 24ch; }
.sec-head .more { color: var(--teal-deep); font-weight: 620; white-space: nowrap; }

/* alt backgrounds */
.soft { background: var(--bg-soft); }
.teal-band { background: linear-gradient(135deg, var(--teal) 0%, #009DB6 55%, var(--teal-deep) 100%); color: #fff; }
.teal-band p { color: rgba(255,255,255,.88); }
.teal-band h2, .teal-band h3 { color: #fff; }
.teal-band .eyebrow { color: rgba(255,255,255,.85); }

/* icon tile */
.icon-tile { text-align: center; padding: 34px 18px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: transform .3s var(--ease-pop), border-color .2s ease, box-shadow .3s var(--ease-out); }
.icon-tile:hover { border-color: rgba(0,181,205,.5); transform: translateY(-5px); box-shadow: 0 16px 34px rgba(10,60,72,.09); }
.icon-tile .ico { width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 50%; background: var(--teal-tint); display: flex; align-items: center; justify-content: center; color: var(--teal-deep); }
.icon-tile .ico svg { width: 28px; height: 28px; }
.icon-tile h3 { font-size: 1.05rem; }
.icon-tile p { font-size: .85rem; }

/* footer */
footer.site { background: #14262C; color: #9FAFB5; padding: 64px 0 40px; font-size: .92rem; }
footer .cols { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; align-items: start; }
footer a:hover { color: #fff; }
footer .foot-links { display: flex; gap: 26px; flex-wrap: wrap; font-weight: 500; }
footer .legal { border-top: 1px solid #2C3E44; margin-top: 40px; padding-top: 24px; font-size: .8rem; color: #74868C; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* floating contact */
.float-contact { position: fixed; right: 26px; bottom: 26px; z-index: 60; display: flex; flex-direction: column; gap: 12px; }
.float-contact .fab { width: 56px; height: 56px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 28px rgba(0,120,140,.4); transition: transform .3s var(--ease-pop); }
.float-contact .fab:hover { transform: scale(1.1); }

/* breadcrumb */
.crumb { font-size: .85rem; color: var(--gray); padding: 18px 0; font-weight: 500; }
.crumb a:hover { color: var(--teal-deep); }
.crumb span { margin: 0 8px; color: #C6CDD0; }

/* accordion */
details { border-bottom: 1px solid var(--line); padding: 18px 4px; }
details summary { cursor: pointer; font-weight: 570; color: var(--ink); font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; }
details summary::after { content: "+"; color: var(--teal); font-size: 1.3rem; font-weight: 400; }
details[open] summary::after { content: "–"; }
details p { padding-top: 10px; max-width: 75ch; }

/* forms */
.field { display: block; margin-bottom: 18px; }
.field span { display: block; font-size: .85rem; font-weight: 620; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px;
  font-family: var(--font); font-size: .95rem; color: var(--ink); background: #fff;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--teal); border-color: transparent; }

:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

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