/* ============================================================
   FUSEWORK — Fuse + Work, woven together
   Palette drawn from the brand logo:
   deep forest, pine, emerald, jade, sage/olive, cream
   ============================================================ */
:root {
  --ink: #0A2E1E;          /* deepest forest — headings, dark bg */
  --pine: #124B31;         /* primary dark green */
  --emerald: #1E7A4A;      /* primary brand green */
  --jade: #2FA05F;         /* bright accent green */
  --sage: #7A8B6F;         /* olive/sage from logo strands */
  --mist: #E9F3EC;         /* light green tint */
  --cream: #FAFBF8;        /* page background */
  --white: #ffffff;
  --text: #1C2A22;
  --text-muted: #58685E;
  --grad-brand: linear-gradient(135deg, var(--pine) 0%, var(--emerald) 55%, var(--jade) 100%);
  --shadow: 0 24px 48px -24px rgba(10, 46, 30, 0.28);
  --shadow-sm: 0 10px 24px -14px rgba(10, 46, 30, 0.25);
  --radius: 18px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Sarabun', 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }
h1, h2, h3, h4, h5 { font-family: 'Plus Jakarta Sans', 'Sarabun', sans-serif; margin: 0; }

.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--emerald);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 3px;
  background: var(--grad-brand);
  border-radius: 3px;
}
.eyebrow.light { color: #9fd6b6; }
.eyebrow.light::before { background: #9fd6b6; }

.section-head { max-width: 660px; margin-bottom: 60px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); color: var(--ink); font-weight: 800; line-height: 1.3; }
.section-head p { color: var(--text-muted); margin-top: 14px; font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15.5px;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-primary { background: var(--grad-brand); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow); filter: brightness(1.06); }
.btn-outline { border-color: var(--emerald); color: var(--emerald); background: transparent; }
.btn-outline:hover { background: var(--emerald); color: var(--white); transform: translateY(-3px); }
.btn-light { background: var(--white); color: var(--pine); }
.btn-light:hover { background: var(--mist); transform: translateY(-3px); }
.btn-ghost { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 251, 248, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 46, 30, 0.07);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px -22px rgba(10,46,30,0.5); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; color: var(--ink); font-family: 'Plus Jakarta Sans', sans-serif; }
.brand img { height: 42px; width: auto; }
.brand small { display: block; font-size: 10.5px; font-weight: 500; color: var(--text-muted); letter-spacing: .04em; font-family: 'Sarabun', sans-serif; }
.main-nav ul { display: flex; gap: 24px; align-items: center; }
.main-nav a { font-weight: 500; font-size: 14.5px; color: var(--text); position: relative; padding: 6px 0; white-space: nowrap; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
  transition: width .25s ease;
}
.main-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; align-items: center; gap: 7px; font-weight: 700; color: var(--pine); font-size: 14.5px; }
.header-phone:hover { color: var(--jade); }

.lang-switch {
  display: inline-flex;
  background: var(--mist);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch button {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}
.lang-switch button.active { background: var(--pine); color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 25px; height: 3px; background: var(--ink); border-radius: 3px; transition: all .25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 88px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 85% 10%, var(--mist) 0%, transparent 60%),
    var(--cream);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-weave { position: absolute; right: -80px; top: -60px; width: 760px; height: 100%; }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero h1 { font-size: clamp(34px, 5vw, 54px); color: var(--ink); font-weight: 800; line-height: 1.22; letter-spacing: -0.01em; }
.hero p.lead { font-size: 17.5px; color: var(--text-muted); margin: 24px 0 34px; max-width: 540px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 52px; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-size: 32px; color: var(--ink); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; }
.hero-stats .stat b::after { content: ""; display: block; width: 26px; height: 3px; background: var(--grad-brand); border-radius: 2px; margin-top: 4px; }
.hero-stats .stat span { font-size: 14px; color: var(--text-muted); }

.hero-visual { position: relative; }
.hero-photo {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
  aspect-ratio: 4 / 4.4;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-logo {
  position: absolute;
  top: -26px; right: -18px;
  background: var(--white);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.hero-card-logo img { height: 62px; width: auto; }
.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
}
.badge-cpa { bottom: 34px; left: -26px; }
.badge-cpa .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--jade); box-shadow: 0 0 0 4px rgba(47,160,95,0.22); flex: none; }
.badge-exp { top: 42%; right: -24px; flex-direction: column; gap: 2px; text-align: center; padding: 14px 18px; }
.badge-exp b { font-size: 24px; font-family: 'Plus Jakarta Sans', sans-serif; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.badge-exp span { font-size: 12px; font-weight: 600; color: var(--text-muted); }

/* ---------- Trust strip (marquee) ---------- */
.trust-strip {
  background: var(--grad-brand);
  padding: 18px 0;
  overflow: hidden;
}
.marquee { overflow: hidden; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span { color: var(--white); font-size: 15px; font-weight: 600; white-space: nowrap; }
.marquee-track i { color: rgba(255,255,255,0.55); font-style: normal; font-size: 12px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Brand story ---------- */
.story { background: var(--white); position: relative; overflow: hidden; }
.story-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.story-copy h2 { font-size: clamp(28px, 4vw, 40px); color: var(--ink); font-weight: 800; line-height: 1.3; }
.story-copy p { color: var(--text-muted); margin-top: 18px; font-size: 16.5px; }
.story-copy strong { color: var(--pine); }
.story-values { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.value-pill {
  background: var(--mist);
  color: var(--pine);
  font-weight: 700;
  font-size: 14.5px;
  padding: 10px 20px;
  border-radius: 999px;
}

.fuse-diagram {
  background: linear-gradient(160deg, var(--mist), var(--cream));
  border-radius: 28px;
  padding: 48px 40px;
  display: grid;
  justify-items: center;
  gap: 8px;
  border: 1px solid rgba(18, 75, 49, 0.08);
}
.fuse-chip {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .06em;
  padding: 16px 34px;
  border-radius: 16px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.fuse-chip small { display: block; font-family: 'Sarabun', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0; opacity: .85; }
.chip-a { background: linear-gradient(135deg, var(--pine), var(--emerald)); }
.chip-b { background: linear-gradient(135deg, var(--sage), #99a98c); }
.fuse-plus { font-size: 26px; font-weight: 800; color: var(--sage); }
.fuse-lines { width: 220px; height: auto; margin: 6px 0; }
.fuse-result {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px 34px;
  box-shadow: var(--shadow);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: .08em;
  color: var(--ink);
}
.fuse-result img { height: 44px; width: auto; }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center; }
.about-copy h2 { font-size: clamp(28px, 4vw, 38px); color: var(--ink); font-weight: 800; line-height: 1.3; }
.about-copy > p { color: var(--text-muted); margin-top: 18px; font-size: 16.5px; }
.about-points { display: grid; gap: 22px; margin-top: 34px; }
.about-point { display: flex; gap: 16px; align-items: flex-start; }
.about-point .icon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--grad-brand);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.about-point h4 { font-size: 16.5px; color: var(--ink); margin-bottom: 4px; }
.about-point p { margin: 0; color: var(--text-muted); font-size: 15px; }

.about-visual { position: relative; padding-bottom: 60px; }
.about-photo {
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
  width: 88%;
  aspect-ratio: 4/3.4;
  object-fit: cover;
}
.about-photo-sm {
  position: absolute;
  right: 0; bottom: 0;
  width: 46%;
  aspect-ratio: 1/0.85;
  object-fit: cover;
  border-radius: 20px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}
.about-reg-card {
  position: absolute;
  left: 18px; bottom: 26px;
  background: var(--ink);
  color: var(--white);
  border-radius: 14px;
  padding: 12px 20px;
  box-shadow: var(--shadow);
}
.about-reg-card small { display: block; font-size: 11.5px; opacity: .7; }
.about-reg-card b { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; letter-spacing: .05em; }

/* ---------- Services ---------- */
.services { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all .3s ease;
  border: 1px solid rgba(18, 75, 49, 0.06);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity .3s ease;
}
.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
  border-color: rgba(30, 122, 74, 0.18);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.service-card h3 { font-size: 19px; color: var(--ink); margin-bottom: 10px; font-weight: 700; }
.service-card p { margin: 0; color: var(--text-muted); font-size: 15px; }

/* ---------- Why us ---------- */
.why-us { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.why-weave { position: absolute; inset: 0; pointer-events: none; }
.why-weave svg { width: 100%; height: 100%; }
.why-us .container { position: relative; }
.why-us .section-head h2 { color: var(--white); }
.why-us .section-head p { color: rgba(255,255,255,0.65); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: all .3s ease;
}
.why-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); border-color: rgba(47,160,95,0.4); }
.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(47,160,95,0.16);
  color: #7fd4a4;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-card h4 { font-size: 17px; margin-bottom: 10px; font-weight: 700; }
.why-card p { margin: 0; font-size: 14.5px; color: rgba(255,255,255,0.62); }

/* ---------- Process ---------- */
.process { background: var(--cream); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-step { text-align: center; padding: 0 22px; position: relative; }
.process-step .step-num {
  width: 54px; height: 54px; margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 18px;
  box-shadow: 0 0 0 8px var(--mist), var(--shadow-sm);
}
.process-step h4 { font-size: 17px; color: var(--ink); margin-bottom: 8px; font-weight: 700; }
.process-step p { margin: 0 auto; font-size: 14.5px; color: var(--text-muted); max-width: 230px; }
/* connector: drawn per-step, only between circles, sitting behind them */
.process-step:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 26px;
  left: calc(-50% + 50px);
  right: calc(50% + 50px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--jade) 0 7px, transparent 7px 15px);
  opacity: .45;
}

/* ---------- Knowledge / Articles ---------- */
.knowledge { background: var(--white); }
.knowledge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.k-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(18, 75, 49, 0.06);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}
.k-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: var(--white); border-color: rgba(30,122,74,0.18); }
.k-thumb { aspect-ratio: 16/9; overflow: hidden; }
.k-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.k-card:hover .k-thumb img { transform: scale(1.05); }
.k-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.k-chip {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--emerald);
  background: var(--mist);
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}
.k-body h3 { font-size: 18px; color: var(--ink); font-weight: 700; line-height: 1.45; }
.k-body p { margin: 0; font-size: 14.5px; color: var(--text-muted); flex: 1; }
.k-more { font-size: 14.5px; font-weight: 700; color: var(--emerald); display: inline-flex; align-items: center; gap: 6px; }
.k-card:hover .k-more { color: var(--jade); }
.k-more::after { content: "→"; transition: transform .25s ease; }
.k-card:hover .k-more::after { transform: translateX(4px); }

/* ---------- Article page ---------- */
.article-hero {
  background: var(--grad-brand);
  color: var(--white);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.article-hero .container { position: relative; max-width: 820px; }
.article-hero .k-chip { background: rgba(255,255,255,0.16); color: #d7f0e0; margin-bottom: 18px; display: inline-block; }
.article-hero h1 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; line-height: 1.35; }
.article-hero .article-date { margin-top: 16px; font-size: 14px; color: rgba(255,255,255,0.75); }
.article-wrap { padding: 64px 0 80px; background: var(--cream); }
.article-body { max-width: 820px; margin: 0 auto; padding: 0 24px; font-size: 16.5px; }
.article-body h2 { font-size: 24px; color: var(--ink); font-weight: 800; margin: 44px 0 16px; }
.article-body h3 { font-size: 19px; color: var(--pine); font-weight: 700; margin: 32px 0 12px; }
.article-body p { margin: 0 0 18px; color: var(--text); }
.article-body ul, .article-body ol { padding-left: 24px; margin: 0 0 20px; display: grid; gap: 10px; color: var(--text); }
.article-body ul { list-style: none; padding-left: 4px; }
.article-body ul li { padding-left: 30px; position: relative; }
.article-body ul li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  border-radius: 6px;
  background: var(--mist);
  color: var(--emerald);
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.article-body ol { list-style: decimal; }
.article-body table { width: 100%; border-collapse: collapse; margin: 0 0 24px; font-size: 15px; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.article-body th { background: var(--pine); color: var(--white); text-align: left; padding: 12px 16px; font-weight: 700; }
.article-body td { padding: 12px 16px; border-bottom: 1px solid var(--mist); }
.article-body tr:last-child td { border-bottom: none; }
.article-note {
  background: var(--mist);
  border-left: 4px solid var(--jade);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  font-size: 14.5px;
  color: var(--pine);
  margin: 36px 0 0;
}
.article-cta {
  max-width: 820px;
  margin: 48px auto 0;
  padding: 0 24px;
}
.article-cta .cta-banner { padding: 40px 44px; }
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--emerald);
  margin-bottom: 22px;
}
.article-back:hover { color: var(--jade); }

/* ---------- CTA ---------- */
.cta { padding: 40px 0 100px; background: var(--cream); }
.cta-banner {
  position: relative;
  background: var(--grad-brand);
  border-radius: 30px;
  padding: 58px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-weave { position: absolute; inset: 0; pointer-events: none; }
.cta-weave svg { width: 100%; height: 100%; }
.cta-content, .cta-actions { position: relative; }
.cta-banner h2 { font-size: clamp(24px, 3vw, 30px); margin-bottom: 10px; font-weight: 800; }
.cta-banner p { margin: 0; color: rgba(255,255,255,0.85); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
.contact-info { display: grid; gap: 20px; align-content: start; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .icon {
  flex: none; width: 46px; height: 46px; border-radius: 13px;
  background: var(--mist); color: var(--emerald);
  display: flex; align-items: center; justify-content: center;
}
.info-item h4 { font-size: 15.5px; color: var(--ink); margin-bottom: 4px; font-weight: 700; }
.info-item p { margin: 0; color: var(--text-muted); font-size: 14.5px; }
.info-item a:hover { color: var(--jade); }
.contact-form {
  background: var(--cream);
  border-radius: 22px;
  padding: 38px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(18,75,49,0.06);
  display: grid;
  gap: 18px;
  align-content: start;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid #dde8e0;
  font-family: inherit;
  font-size: 15px;
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 116px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--jade);
  box-shadow: 0 0 0 4px rgba(47,160,95,0.12);
}
.form-note { font-size: 13px; color: var(--text-muted); margin: 0; }
#form-status { font-size: 14.5px; font-weight: 600; min-height: 20px; margin: 0; }
#form-status.ok { color: var(--emerald); }
#form-status.err { color: #b3413b; }

/* ---------- Contact map ---------- */
.contact-map {
  position: relative;
  margin-top: 56px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
  background: var(--mist);
}
.contact-map iframe { display: block; width: 100%; height: 430px; border: 0; }
.map-open {
  position: absolute;
  bottom: 20px; right: 20px;
  padding: 11px 24px;
  font-size: 14px;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.72); padding-top: 76px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 12px; color: var(--white); font-weight: 800; font-size: 19px; margin-bottom: 16px; font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: .05em; }
.footer-logo-chip { background: var(--white); border-radius: 10px; padding: 5px 7px; display: inline-flex; }
.footer-logo-chip img { height: 28px; width: auto; }
.footer-grid p { font-size: 14.5px; margin: 0 0 10px; }
.footer-reg { font-size: 13px !important; opacity: .75; }
.site-footer h5 { color: var(--white); font-size: 15px; margin-bottom: 18px; font-weight: 700; }
.site-footer ul { display: grid; gap: 12px; font-size: 14.5px; }
.site-footer ul a:hover { color: var(--white); }
.footer-contact li { line-height: 1.6; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s ease;
}
.social-links a:hover { background: var(--jade); color: var(--white); transform: translateY(-3px); }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; font-size: 13.5px; flex-wrap: wrap; gap: 10px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
/* ============ PRICING ============ */
.pricing { background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 940px; margin: 0 auto; align-items: stretch; }
.price-card {
  background: var(--cream);
  border: 1px solid rgba(18, 75, 49, 0.10);
  border-radius: var(--radius);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: var(--white); border-color: rgba(30, 122, 74, 0.2); }
.price-card.featured { background: var(--white); border: 2px solid var(--emerald); box-shadow: var(--shadow-sm); }
.price-card h3 { font-size: 19px; color: var(--ink); font-weight: 700; }
.price-amount { display: flex; align-items: baseline; gap: 8px; margin: 16px 0 4px; }
.price-amount small { font-size: 13.5px; color: var(--text-muted); }
.price-amount b { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(34px, 4vw, 44px); color: var(--emerald); font-weight: 800; line-height: 1; }
.price-amount span { color: var(--text-muted); font-size: 14.5px; }
.price-features { list-style: none; margin: 22px 0 28px; padding: 0; display: grid; gap: 11px; flex: 1; align-content: start; }
.price-features li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--text); }
.price-features li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--jade); font-weight: 700; }
.price-card .btn { align-self: flex-start; }
.pricing-note { text-align: center; margin-top: 28px; font-size: 13px; color: var(--text-muted); }

/* ============ TEAM ============ */
.team { background: var(--cream); }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 940px; margin: 0 auto; }
.team-card {
  background: var(--white);
  border: 1px solid rgba(18, 75, 49, 0.08);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: all .3s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(30, 122, 74, 0.18); }
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 700;
  flex-shrink: 0;
}
.team-card h4 { font-size: 17.5px; color: var(--ink); font-weight: 700; margin-bottom: 6px; }
.team-role { display: inline-block; font-size: 13px; color: var(--emerald); font-weight: 600; background: var(--mist); border-radius: 100px; padding: 4px 14px; margin-bottom: 10px; }
.team-cred { margin: 0; font-size: 14px; color: var(--text-muted); }

@media (max-width: 1060px) {
  .badge-exp { right: 8px; }
  .hero-card-logo { right: 8px; }
}
@media (max-width: 980px) {
  .hero-grid, .about-grid, .contact-grid, .story-grid { grid-template-columns: 1fr; }
  .pricing-grid, .team-grid { grid-template-columns: 1fr; max-width: 560px; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .badge-cpa { left: -8px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .process-step:not(:first-child)::before { display: none; }
  .knowledge-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-visual { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 860px) {
  .header-phone { display: none; }
}
@media (max-width: 720px) {
  section { padding: 68px 0; }
  .main-nav {
    position: fixed;
    top: 67px; left: 0; right: 0;
    background: var(--white);
    padding: 22px 24px;
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: all .25s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav-toggle { display: flex; }
  .btn-sm { display: none; }
  .hero { padding: 56px 0 80px; }
  .hero-weave { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .knowledge-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 28px; text-align: center; justify-content: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: 28px 22px; }
  .contact-map { margin-top: 40px; border-width: 4px; }
  .contact-map iframe { height: 320px; }
  .fuse-diagram { padding: 36px 22px; }
}
