/* ═══════════════════════════════════════════
   Hublot Watch Repair — main.css
   Design: Exact GO official brand language
   ═══════════════════════════════════════════ */

/* ── LANGUAGE TOGGLE ── */
.lang-toggle{
  background:none;
  border:1px solid var(--go-accent);
  border-radius:0;
  color:var(--go-text-mid);
  font-size:10px;
  font-weight:700;
  letter-spacing:.1em;
  padding:6px 12px;
  cursor:pointer;
  transition:all .3s;
  font-family:inherit;
  margin-left:12px;
  white-space:nowrap;
  text-transform:uppercase;
}
.lang-toggle:hover{
  color:var(--go-accent-hover);
  border-color:var(--go-accent-hover);
}

:root {
  --go-black: #030304;
  --go-text: #1a1a1a;
  --go-text-mid: #545454;
  --go-text-light: #999999;
  --go-white: #ffffff;
  --go-cream: #f5f5f0;
  --go-bg: #f2f2f2;
  --go-accent: #392f2c;
  --go-accent-hover: #195580;
  --go-border: #e0ddd7;
  --go-border-light: #eae8e3;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, 'Noto Sans TC', sans-serif;
  --font-display: 'Inter', 'Helvetica Neue', Arial, 'Noto Sans TC', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--go-text);
  background: var(--go-white);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NAVIGATION ── */
.go-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--go-white);
  border-bottom: 1px solid var(--go-border-light);
  transition: all .3s ease;
}
.go-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.go-nav-brand {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--go-black);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.go-nav-brand span { color: var(--go-accent); }
.go-nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.go-nav-links a {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--go-text-mid);
  font-weight: 400;
  transition: color .3s;
  position: relative;
  padding: 4px 0;
}
.go-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--go-black);
  transform: scaleX(0);
  transition: transform .3s;
}
.go-nav-links a:hover { color: var(--go-black); }
.go-nav-links a:hover::after { transform: scaleX(1); }
.go-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.go-hamburger span { width: 20px; height: 1.5px; background: var(--go-black); transition: all .3s; }

/* ── HERO ── */
.go-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--go-black);
}
.go-hero-bg {
  position: absolute; inset: 0;
  background: url('images/banner1.jpg') center center / cover no-repeat;
  filter: brightness(.45) saturate(.75);
  pointer-events: none;
}
.go-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(3,3,4,.75) 0%, rgba(3,3,4,.35) 50%, rgba(57,47,44,.55) 100%);
  pointer-events: none;
}
.go-hero-content {
  position: relative; z-index: 2;
  padding: 120px 24px 80px;
  max-width: 720px;
}
.go-label {
  display: block;
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--go-text-light);
  margin-bottom: 32px;
  font-weight: 400;
  text-align: center;
}
.go-hero .go-label {
  color: rgba(255,255,255,.45);
}
.go-hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 400;
  color: var(--go-white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.go-hero h1 em {
  font-style: normal;
  font-weight: 400;
  color: rgba(255,255,255,.7);
}
.go-hero .go-rule {
  width: 40px;
  height: 1.5px;
  background: rgba(255,255,255,.3);
  margin: 0 auto 28px;
}
.go-hero p {
  font-size: clamp(13px, 1.5vw, 15px);
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 40px;
  font-weight: 400;
}

/* ── BUTTONS ── */
.go-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--go-accent);
  border: 1px solid var(--go-accent);
  color: var(--go-white);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
  transition: all .3s ease;
  cursor: pointer;
}
.go-btn-primary:hover {
  background: var(--go-accent-hover);
  border-color: var(--go-accent-hover);
}
.go-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid var(--go-accent);
  color: var(--go-accent);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
  transition: all .3s ease;
  cursor: pointer;
}
.go-btn-outline:hover {
  background: var(--go-accent);
  color: var(--go-white);
}

/* Hero context: button uses white border over dark bg */
.go-hero .go-btn-primary {
  background: var(--go-white);
  border-color: var(--go-white);
  color: var(--go-black);
}
.go-hero .go-btn-primary:hover {
  background: transparent;
  color: var(--go-white);
}

/* ── THIRD PARTY NOTICE ── */
.go-tp-notice {
  background: var(--go-bg);
  border-top: 1px solid var(--go-border);
  border-bottom: 1px solid var(--go-border);
  padding: 16px 24px;
  text-align: center;
  font-size: 11px;
  color: var(--go-text-mid);
  line-height: 1.9;
  letter-spacing: .02em;
}
.go-tp-notice strong { font-weight: 600; }

/* ── SECTIONS ── */
.go-section {
  padding: clamp(64px, 8vw, 120px) clamp(20px, 4vw, 48px);
}
.go-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.go-section-dark {
  background: var(--go-black);
  color: var(--go-white);
}
.go-section-bg {
  background: var(--go-bg);
}
.go-section-title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--go-black);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -.01em;
  text-align: center;
}
.go-section-dark .go-section-title { color: var(--go-white); }
.go-section-desc {
  font-size: 14px;
  color: var(--go-text-mid);
  line-height: 1.9;
  max-width: 560px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.go-section-dark .go-section-desc { color: rgba(255,255,255,.55); }

.go-rule {
  width: 40px;
  height: 1.5px;
  background: var(--go-accent);
  margin: 0 auto 28px;
}

/* ── SERVICES GRID ── */
.go-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--go-border);
  margin-top: 48px;
}
.go-service-card {
  background: var(--go-white);
  transition: all .3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.go-service-card:hover { background: var(--go-bg); }
.go-service-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.go-service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.go-service-card:hover .go-service-card-img img {
  transform: scale(1.05);
}
.go-service-card-body {
  padding: clamp(20px, 2.5vw, 28px) clamp(20px, 2.5vw, 28px);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.go-service-card h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--go-black);
  letter-spacing: .02em;
}
.go-service-card p {
  font-size: 13px;
  color: var(--go-text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
  flex: 1;
}
.go-service-link {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--go-accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s;
  margin-top: auto;
}
.go-service-link::after { content: '→'; font-size: 11px; transition: transform .3s; }
.go-service-link:hover { gap: 12px; }
.go-service-link:hover::after { transform: translateX(3px); }

/* ── PROCESS ── */
.go-process-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 48px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
}
.go-process-step {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 24px);
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2vw, 24px);
  background: var(--go-black);
  transition: all .3s ease;
}
.go-process-step:hover {
  background: rgba(255,255,255,.04);
  padding-left: clamp(20px, 2.5vw, 28px);
}
.go-step-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  transition: all .4s ease;
}
.go-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.go-process-step:hover .go-step-img {
  box-shadow: 0 0 0 2px var(--go-accent);
}
.go-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.35);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s ease;
}
.go-process-step:hover .go-step-num {
  background: var(--go-accent);
  color: var(--go-white);
}
.go-step-body { flex: 1; min-width: 0; }
.go-step-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
  color: var(--go-white);
  letter-spacing: .03em;
}
.go-step-desc {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
  margin: 0;
}

/* ── CONTACT + MAP ── */
#go-contact-map {
  background: var(--go-black);
  color: var(--go-white);
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 520px;
}
.go-contact-left {
  padding: clamp(40px, 5vw, 60px) clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.go-contact-left .go-label {
  color: var(--go-text-light);
  opacity: .5;
}
.go-contact-left h2 {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--go-white);
  line-height: 1.2;
  letter-spacing: -.01em;
}
.go-contact-item {
  margin-bottom: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.go-ci-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  margin-top: 2px;
  color: var(--go-accent);
}
.go-ci-icon svg { width: 15px; height: 15px; }
.go-ci-body { flex: 1; }
.go-ci-label {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--go-text-light);
  opacity: .5;
  margin-bottom: 2px;
}
.go-ci-value {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
}
.go-ci-value a { color: rgba(255,255,255,.85); transition: color .3s; }
.go-ci-value a:hover { color: var(--go-accent-hover); }
.go-ci-sub {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  margin-top: 2px;
}
.go-contact-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  background: var(--go-accent);
  border: 1px solid var(--go-accent);
  color: var(--go-white);
  cursor: pointer;
  transition: all .4s;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-sans);
}
.go-contact-wa:hover {
  background: transparent;
  border-color: var(--go-accent);
  color: var(--go-accent);
}
.go-contact-maps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: all .4s;
  font-weight: 400;
  margin-top: 8px;
  text-align: center;
  font-family: var(--font-sans);
}
.go-contact-maps:hover {
  border-color: rgba(255,255,255,.5);
  color: var(--go-white);
}
.go-contact-map-full {
  overflow: hidden;
  min-height: 520px;
  position: relative;
}

/* ── ABOUT ── */
.go-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
  margin-top: 48px;
}
.go-carousel-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.go-carousel {
  width: 100%;
  height: 100%;
  position: relative;
}
.go-carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .8s cubic-bezier(.4,0,.2,1);
}
.go-carousel-slide.active { opacity: 1; z-index: 2; }
.go-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.go-carousel-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px 22px;
  background: linear-gradient(transparent, rgba(3,3,4,.8));
  color: var(--go-white);
}
.go-carousel-overlay h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 3px;
  color: var(--go-white);
  letter-spacing: .04em;
}
.go-carousel-overlay p {
  font-size: 11px;
  opacity: .65;
  color: var(--go-white);
  line-height: 1.5;
}
.go-carousel-arrows {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  z-index: 10;
  pointer-events: none;
}
.go-carousel-arrows button {
  pointer-events: auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  border: none;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.go-carousel-wrap:hover .go-carousel-arrows button { opacity: 1; }
.go-carousel-arrows button:hover {
  background: var(--go-accent);
  color: var(--go-white);
}
.go-carousel-arrows button svg { width: 16px; height: 16px; }
.go-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.go-carousel-dots .go-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--go-border);
  cursor: pointer;
  transition: all .4s;
  border: none;
}
.go-carousel-dots .go-carousel-dot.active {
  background: var(--go-accent);
  width: 24px;
  border-radius: 3px;
}
.go-about-text h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--go-black);
  letter-spacing: -.01em;
}
.go-about-text p {
  font-size: 14px;
  color: var(--go-text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
}
.go-about-text strong { font-weight: 600; color: var(--go-accent); }

/* ── ABOUT FEATURES LIST ── */
.go-about-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
}
.go-about-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  background: var(--go-bg);
  transition: all .3s ease;
}
.go-about-features li:hover {
  background: var(--go-border);
  transform: translateX(4px);
}
.go-af-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--go-accent);
}
.go-af-icon svg { width: 100%; height: 100%; }
.go-af-text {
  font-size: 13px;
  color: var(--go-text);
  line-height: 1.6;
}
.go-af-text strong {
  font-weight: 600;
  color: var(--go-black);
}

.go-badges {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.go-badge {
  padding: 7px 14px;
  border: 1px solid var(--go-border);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--go-text-mid);
  font-weight: 500;
}

/* ── COLLECTIONS ── */
.go-collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--go-border);
  margin-top: 48px;
}
.go-collection-card {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 3/4;
  transition: all .4s ease;
  text-decoration: none;
}
.go-collection-card-img {
  position: absolute;
  inset: 0;
}
.go-collection-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.go-collection-card:hover .go-collection-card-img img {
  transform: scale(1.08);
}
.go-collection-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px 26px;
  background: linear-gradient(transparent 20%, rgba(3,3,4,.85) 100%);
  text-align: center;
  transition: all .4s ease;
}
.go-collection-card:hover .go-collection-card-overlay {
  padding-bottom: 32px;
}
.go-collection-name {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--go-white);
  letter-spacing: .04em;
}
.go-collection-desc {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* ── FOOTER ── */
.go-footer {
  background: var(--go-black);
  color: rgba(255,255,255,.45);
  padding: 64px clamp(20px, 4vw, 48px) 28px;
}
.go-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.go-footer-brand {
  font-size: 14px;
  font-weight: 600;
  color: var(--go-white);
  margin-bottom: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.go-footer-brand span { color: var(--go-accent); }
.go-footer p { font-size: 13px; line-height: 1.9; }
.go-footer h4 {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--go-accent);
  margin-bottom: 16px;
  font-weight: 500;
}
.go-footer ul { list-style: none; }
.go-footer ul li { margin-bottom: 8px; }
.go-footer ul a {
  color: rgba(255,255,255,.45);
  font-size: 13px;
  transition: color .3s;
}
.go-footer ul a:hover { color: var(--go-accent-hover); }
.go-footer-disclaimer {
  max-width: 1100px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 10px;
  color: rgba(255,255,255,.2);
  line-height: 2;
}
.go-footer-disclaimer strong { color: rgba(255,255,255,.3); font-weight: 500; }
.go-footer-bottom {
  max-width: 1100px;
  margin: 20px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.04);
  font-size: 10px;
  color: rgba(255,255,255,.15);
  letter-spacing: .08em;
  text-align: center;
}
.whatsapp-float{position:fixed;bottom:24px;right:24px;z-index:9999;background-color:#25D366;border-radius:50%;width:60px;height:60px;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 12px rgba(0,0,0,.3);transition:transform .3s}
.whatsapp-float:hover{transform:scale(1.1)}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .go-services-grid { grid-template-columns: repeat(2, 1fr); }
  .go-collections-grid { grid-template-columns: repeat(2, 1fr); }
  .go-about-grid { grid-template-columns: 1fr; }
  .go-footer-inner { grid-template-columns: 1fr; gap: 28px; }
  #go-contact-map { grid-template-columns: 1fr; min-height: auto; }
  .go-contact-left { max-width: 100%; padding: clamp(32px, 5vw, 48px) clamp(20px, 4vw, 32px); }
  .go-contact-map-full { min-height: 300px; }
}
@media (max-width: 640px) {
  .go-carousel-arrows button { opacity: 1; }
  .go-nav-links { display: none; }
  .go-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--go-white);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--go-border);
  }
  .go-nav-links.open a::after { display: none; }
  .go-hamburger { display: flex; }
  .go-services-grid { grid-template-columns: 1fr; }
  .go-collections-grid { grid-template-columns: repeat(2, 1fr); }
  .go-hero { min-height: 70vh; }
  .go-hero h1 { font-size: clamp(26px, 7vw, 36px); }
}

  .lang-toggle {
    margin-left:0;
    margin-right:8px;
  }
}

/* ═══════════════════════════════════════════
   合併自各頁面內嵌 CSS (2026-06-16)
   ═══════════════════════════════════════════ */

/* --- faq.html --- */
/* ── SUB-HERO ── */

/* ── FAQ SECTION ── */
.go-faq-section {
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px);
  max-width: 800px;
  margin: 0 auto;
}
.go-faq-head {
  text-align: center;
  margin-bottom: 48px;
}
.go-faq-head h2 {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--go-black);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.go-faq-head .go-rule {
  width: 40px;
  height: 1.5px;
  background: rgba(139,115,85,.3);
  margin: 16px auto;
}
.go-faq-head p {
  font-size: 13px;
  color: var(--go-text-light);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}
.go-faq-list {
  display: flex;
  flex-direction: column;
}
.go-faq-item {
  border-bottom: 1px solid rgba(139,115,85,.12);
  padding: 0 24px;
  transition: background .3s;
}
.go-faq-item:hover {
  background: rgba(139,115,85,.02);
}
.go-faq-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--go-black);
  line-height: 1.5;
}
.go-faq-header:hover {
  color: var(--go-accent);
}
.go-faq-icon {
  width: 20px;
  height: 20px;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  color: var(--go-accent);
}
.go-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.4,0,.2,1);
}
.go-faq-content p {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--go-text-mid);
  line-height: 1.85;
  margin: 0;
}
.go-faq-content a {
  color: var(--go-accent);
  text-decoration: none;
}
.go-faq-content a:hover {
  text-decoration: underline;
}

/* ── CTA ── */
.go-cta-full {
  background: var(--go-black);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px);
  text-align: center;
}
.go-cta-full-inner {
  max-width: 860px;
  margin: 0 auto;
  color: var(--go-white);
}
.go-cta-full h2 {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--go-white);
  letter-spacing: -.01em;
}
.go-cta-full .go-rule {
  width: 40px;
  height: 1.5px;
  background: rgba(255,255,255,.2);
  margin: 0 auto 20px;
}
.go-cta-full p {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ── TWO COLUMNS ── */
.go-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}
.go-cta-grid > div {
  display: flex;
  flex-direction: column;
}
@media (max-width: 680px) {
  .go-cta-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ── LEFT: FORM ── */
.go-cta-form .gf-row {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}
.go-cta-form .gf-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.go-cta-form .gf-group label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.go-cta-form .gf-group .req {
  color: rgba(255,180,150,.6);
}
.go-cta-form .gf-group input,
.go-cta-form .gf-group textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 0;
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(255,255,255,.8);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color .2s;
}
.go-cta-form .gf-group input:focus,
.go-cta-form .gf-group textarea:focus {
  border-color: var(--go-accent);
}
.go-cta-form .gf-group input::placeholder,
.go-cta-form .gf-group textarea::placeholder {
  color: rgba(255,255,255,.2);
}
.go-cta-form .gf-submit {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--go-accent);
  border: none;
  color: var(--go-white);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s;
  font-family: var(--font-sans);
}
.go-cta-form .gf-submit:hover { opacity: .85; }
.go-cta-form .gf-submit:disabled { opacity: .4; cursor: not-allowed; }
.go-cta-form .gf-feedback {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  min-height: 20px;
}
.go-cta-form .gf-feedback.success { color: rgba(255,255,255,.7); }
.go-cta-form .gf-feedback.error { color: rgba(255,200,200,.8); }

@media (max-width: 500px) {
  .go-cta-form .gf-row { flex-direction: column; gap: 12px; }
}

/* ── RIGHT: CONTACT SIDEBAR ── */
.go-cta-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 26px;
  min-height: 100%;
}
.go-cta-info .ci-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.go-cta-info .ci-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.8);
}
.go-cta-info .ci-icon svg { width: 15px; height: 15px; }
.go-cta-info .ci-text { display: flex; flex-direction: column; gap: 2px; }
.go-cta-info .ci-label {
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.go-cta-info .ci-value {
  font-size: 13px;
  color: rgba(255,255,255,.92);
  line-height: 1.5;
}
.go-cta-info .ci-value a {
  color: rgba(255,255,255,.92);
  text-decoration: none;
}
.go-cta-info .ci-value a:hover { color: var(--go-accent); }

/* --- pricing.html --- */
/* ── SUB-HERO ── */

/* ── PRICING COMPARE ── */
.go-compare-section {
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px) 0;
}
.go-compare-inner {
  max-width: 960px;
  margin: 0 auto;
}
.go-compare-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--go-border);
}
.go-compare-col {
  background: var(--go-white);
  padding: clamp(24px, 3vw, 40px);
  text-align: center;
}
.go-compare-col:first-child {
  background: var(--go-bg);
}
.go-compare-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--go-border);
}
.go-compare-col:nth-child(2) .go-compare-icon {
  background: var(--go-accent);
  color: var(--go-white);
}
.go-compare-icon svg {
  width: 20px;
  height: 20px;
}
.go-compare-col h3 {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--go-text-light);
  font-weight: 500;
  margin-bottom: 8px;
}
.go-compare-col:nth-child(2) h3 {
  color: var(--go-accent);
}
.go-compare-price {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 300;
  color: var(--go-black);
  margin-bottom: 6px;
}
.go-compare-col .go-compare-price em {
  font-style: normal;
  color: var(--go-text-light);
  font-size: 14px;
}
.go-compare-desc {
  font-size: 12px;
  color: var(--go-text-light);
  line-height: 1.6;
}
.go-compare-note {
  margin-top: 8px;
  padding: 6px 12px;
  background: var(--go-bg);
  font-size: 10px;
  color: var(--go-text-mid);
  line-height: 1.8;
  text-align: center;
  border-radius: 0;
}

/* ── PRICING TABLE ── */
.go-pricing-section {
  padding: clamp(32px, 5vw, 60px) clamp(20px, 4vw, 48px) clamp(64px, 8vw, 120px);
}
.go-pricing-inner {
  max-width: 960px;
  margin: 0 auto;
}
.go-pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--go-white);
  border: 1px solid var(--go-border);
}
.go-pricing-table thead th {
  background: var(--go-black);
  color: var(--go-white);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 20px;
  text-align: left;
  border-bottom: none;
}
.go-pricing-table thead th:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.08);
}
.go-pricing-table tbody td {
  padding: 16px 20px;
  font-size: 13px;
  color: var(--go-text);
  border-bottom: 1px solid var(--go-border);
  vertical-align: middle;
}
.go-pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.go-pricing-table tbody tr:hover {
  background: var(--go-bg);
}
.go-pricing-table tbody td:first-child {
  font-weight: 500;
}
.go-pricing-table .go-price-highlight {
  font-weight: 600;
  color: var(--go-accent);
}
.go-pricing-table .go-price-free {
  font-weight: 600;
  color: #2e7d32;
}
.go-pricing-table .go-badge-inline {
  display: inline-block;
  padding: 2px 8px;
  font-size: 9px;
  letter-spacing: .1em;
  background: var(--go-accent);
  color: var(--go-white);
  border-radius: 2px;
  margin-left: 6px;
  font-weight: 500;
}

/* ── NOTE ── */
.go-pricing-note {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--go-bg);
  border-left: 3px solid var(--go-accent);
  font-size: 12px;
  color: var(--go-text-mid);
  line-height: 1.8;
}

/* ── CTA FULL ── */
.go-cta-full {
  background: var(--go-black);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px);
  text-align: center;
}
.go-cta-full-inner {
  max-width: 600px;
  margin: 0 auto;
  color: var(--go-white);
}
.go-cta-full h2 {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--go-white);
  letter-spacing: -.01em;
}
.go-cta-full .go-rule {
  width: 40px;
  height: 1.5px;
  background: rgba(255,255,255,.2);
  margin: 0 auto 20px;
}
.go-cta-full p {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  margin-bottom: 28px;
}
.go-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .go-compare-bar {
    grid-template-columns: 1fr;
  }
  .go-pricing-table {
    font-size: 12px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* --- service.html --- */
/* ── SUB-HERO ── */

/* ── SERVICE SUB-NAV ── */
.go-service-subnav {
  background: var(--go-white);
  border-bottom: 1px solid var(--go-border);
  position: sticky;
  top: 68px;
  z-index: 50;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.go-service-subnav-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  padding: 0 clamp(16px, 3vw, 32px);
}
.go-service-subnav a {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 14px 22px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--go-text-mid);
  font-weight: 400;
  border-bottom: 2px solid transparent;
  transition: all .3s;
  white-space: nowrap;
}
.go-service-subnav a:hover,
.go-service-subnav a.active {
  color: var(--go-black);
  border-bottom-color: var(--go-accent);
}

/* ── STEPS ── */
.go-steps-section {
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px);
}
.go-steps-inner {
  max-width: 960px;
  margin: 0 auto;
}
.go-step-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2px;
  background: var(--go-bg);
  min-height: 320px;
  transition: all .4s ease;
}
.go-step-card:nth-child(even) .go-step-image { order: 1; }
.go-step-card:nth-child(even) .go-step-info { order: 0; }
.go-step-image {
  overflow: hidden;
  position: relative;
}
.go-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.go-step-card:hover .go-step-image img {
  transform: scale(1.05);
}
.go-step-info {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.go-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.go-step-num-large {
  font-size: 36px;
  font-weight: 200;
  color: var(--go-accent);
  line-height: 1;
  letter-spacing: -.02em;
}
.go-step-label {
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--go-text-light);
  font-weight: 500;
  padding-top: 6px;
}
.go-step-info h3 {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  color: var(--go-black);
  margin-bottom: 14px;
  letter-spacing: .01em;
}
.go-step-info p {
  font-size: 13px;
  color: var(--go-text-mid);
  line-height: 1.9;
}

/* ── CTA FULL ── */
.go-cta-full {
  background: var(--go-black);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px);
  text-align: center;
}
.go-cta-full-inner {
  max-width: 600px;
  margin: 0 auto;
  color: var(--go-white);
}
.go-cta-full h2 {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--go-white);
  letter-spacing: -.01em;
}
.go-cta-full .go-rule {
  width: 40px;
  height: 1.5px;
  background: rgba(255,255,255,.2);
  margin: 0 auto 20px;
}
.go-cta-full p {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  margin-bottom: 28px;
}
.go-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .go-step-card,
  .go-step-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .go-step-card .go-step-image { order: 0 !important; aspect-ratio: 16/10; }
  .go-step-card .go-step-info { order: 1 !important; }
}


/* ═══════════════════════════════════════════
   合併自 blog/ care-01~05 共用 CSS (2026-06-16)
   ═══════════════════════════════════════════ */

/* ── SUB-HERO ── */
.go-subhero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--go-black);
  padding: 100px 24px 60px;
}
.go-subhero-bg {
  position: absolute; inset: 0;
  background: center center / cover no-repeat;
  filter: brightness(.4) saturate(.7);
  pointer-events: none;
}
.go-subhero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(3,3,4,.8) 0%, rgba(3,3,4,.4) 60%, rgba(57,47,44,.5) 100%);
  pointer-events: none;
}
.go-subhero-content {
  position: relative; z-index: 2;
  max-width: 700px;
}
.go-subhero-content h1 {
  font-family: var(--font-sans);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 400;
  color: var(--go-white);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.go-subhero-content .go-rule {
  width: 40px;
  height: 1.5px;
  background: rgba(255,255,255,.3);
  margin: 0 auto 20px;
}
.go-subhero-content p {
  font-size: clamp(13px, 1.4vw, 15px);
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
  font-weight: 400;
}
/* ── TWO-COLUMN LAYOUT ── */
.go-article-two-col {
  display: grid;
  grid-template-columns: 1fr 320px !important;
  gap: 48px;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px);
  align-items: start;
}
.go-article-main {
  min-width: 0;
}
.go-article-sidebar {
  position: sticky;
  top: 100px;
}
.go-sidebar-widget {
  margin-bottom: 36px;
}
.go-sidebar-widget h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--go-accent, #8b7355);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--go-border, #e8e4df);
}
.go-related-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.go-related-sidebar-list li {
  margin-bottom: 1px;
}
.go-related-sidebar-list a {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--go-border, #e8e4df);
  transition: background .2s;
}
.go-related-sidebar-list a:hover {
  background: var(--go-bg, #f8f6f3);
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
}
.go-related-sidebar-list .rsb-img {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 0;
}
.go-related-sidebar-list .rsb-body {
  flex: 1;
  min-width: 0;
}
.go-related-sidebar-list .rsb-tag {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--go-accent, #8b7355);
  margin-bottom: 2px;
}
.go-related-sidebar-list .rsb-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--go-black, #1a1a1a);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.go-related-sidebar-list .rsb-desc {
  font-size: 11px;
  color: var(--go-text-light, #999);
  line-height: 1.5;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* ── ARTICLE BODY ── */
.go-article-body {
  font-size: 16px;
  line-height: 2;
  color: var(--text-dark);
  font-weight: 300;
}
.go-article-body h2 {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3vw, 32px);
  margin: 48px 0 24px;
  color: var(--go-black);
  font-weight: 400;
  letter-spacing: -.01em;
}
.go-article-body h3 {
  font-family: var(--font-sans);
  font-size: clamp(18px, 2.5vw, 24px);
  margin: 40px 0 16px;
  color: var(--go-accent, #8b7355);
  font-weight: 500;
}
.go-article-body p {
  margin-bottom: 24px;
}
.go-article-body ul {
  margin: 24px 0;
  padding-left: 24px;
}
.go-article-body li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 12px;
}
.go-article-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--go-accent, #8b7355);
  border-radius: 50%;
}
.go-article-body strong {
  color: var(--go-black);
  font-weight: 500;
}
.go-article-body blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--go-bg, #f8f6f3);
  border-left: 3px solid var(--go-accent, #8b7355);
  font-style: italic;
}
.go-article-body blockquote strong {
  display: block;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--go-accent, #8b7355);
  margin-bottom: 8px;
  font-style: normal;
}
.go-article-meta {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--go-text-light, #999);
  margin-bottom: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.go-article-img {
  margin: 32px 0;
}
.go-article-img img {
  width: 100%;
  height: auto;
  display: block;
}
.go-article-img figcaption {
  font-size: 12px;
  color: var(--go-text-light, #999);
  margin-top: 8px;
  text-align: center;
  font-style: italic;
}
.go-article-tags {
  display: flex;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.go-article-tags .tag {
  padding: 6px 16px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--go-bg, #f8f6f3);
  color: var(--go-text-mid, #666);
  border: 1px solid var(--go-border, #e8e4df);
  border-radius: 0;
}
/* ── CTA ── */
.go-cta-full {
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px);
  text-align: center;
  background: var(--go-black);
}
.go-cta-full-inner {
  max-width: 600px;
  margin: 0 auto;
  color: var(--go-white);
}
.go-cta-full h2 {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--go-white);
  letter-spacing: -.01em;
}
.go-cta-full .go-rule {
  width: 40px;
  height: 1.5px;
  background: rgba(255,255,255,.2);
  margin: 0 auto 20px;
}
.go-cta-full p {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  margin-bottom: 28px;
}
.go-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.go-label {
  font-size: 9px;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--go-accent, #8b7355);
  margin-bottom: 14px;
  font-weight: 500;
  display: block;
}
/* ── FOOTER ── */
.go-footer {
  background: #1a1a1a;
  padding: 48px clamp(20px, 4vw, 48px) 24px;
  text-align: center;
}
.go-footer-disclaimer {
  max-width: 680px;
  margin: 0 auto 32px;
  font-size: 11px;
  line-height: 1.9;
  color: rgba(255,255,255,.3);
}
.go-footer-disclaimer strong {
  color: rgba(255,255,255,.4);
  font-weight: 500;
}
.go-footer-bottom {
  font-size: 12px;
  color: rgba(255,255,255,.25);
  letter-spacing: .05em;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .go-article-two-col {
    grid-template-columns: 1fr !important;
  }
  .go-article-sidebar {
    position: static;
  }
}
