:root {
  --ink: #191919;
  --ink-soft: #4a4a47;
  --muted: #73736f;
  --line: #deded9;
  --blue: #1264e8;
  --blue-dark: #173f6b;
  --blue-soft: #eaf3ff;
  --orange: #ff9200;
  --orange-soft: #fff0d7;
  --cream: #fbfbf7;
  --gray: #f3f3f0;
  --white: #ffffff;
  --green: #1c9b66;
  --radius: 16px;
  --shell: min(1180px, calc(100% - 48px));
  --shadow: 0 16px 46px rgba(25, 25, 25, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.dialog-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--white); background: var(--blue-dark); }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 8px;
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
[hidden] { display: none !important; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(14px);
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 3px 14px rgba(25, 25, 25, 0.05); }
.header-inner {
  width: min(1360px, calc(100% - 36px));
  min-height: 70px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 210px 1fr 270px;
  align-items: center;
  gap: 24px;
}
.brand { width: 142px; display: inline-flex; align-items: center; }
.brand img { width: 142px; height: auto; }
.site-nav { display: flex; justify-content: center; align-items: center; gap: 30px; }
.site-nav a, .header-phone {
  position: relative;
  font-size: 14px;
  font-weight: 650;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--orange);
  transition: right 160ms ease;
}
.site-nav a:hover::after { right: 0; }
.mobile-nav-cta { display: none; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 18px; }
.header-phone { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.header-phone span { color: var(--muted); font-size: 11px; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; }
.header-phone:hover { color: var(--orange); }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 40px; padding: 10px 15px; font-size: 14px; }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 7px 16px rgba(18, 100, 232, 0.2); }
.button-primary:hover { background: var(--orange); box-shadow: 0 10px 24px rgba(255, 146, 0, 0.26); }
.button-accent { color: var(--white); background: var(--orange); box-shadow: 0 7px 16px rgba(255, 146, 0, 0.22); }
.button-accent:hover { background: var(--blue); box-shadow: 0 10px 24px rgba(18, 100, 232, 0.26); }
.button-outline { color: var(--ink); border-color: var(--ink); background: var(--white); }
.button-outline:hover, .button-white:hover { background: var(--gray); }
.button-white { color: var(--ink); border-color: var(--line); background: var(--white); }
.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  border: 1px solid #cbdcf4;
  border-radius: 12px;
  background: var(--blue-soft);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.menu-toggle:hover { transform: translateY(-1px); border-color: var(--blue); }
.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-dark);
  transition: width 160ms ease, transform 160ms ease, background 160ms ease;
}
.menu-toggle > span:nth-child(2) { width: 16px; margin-left: 6px; }

.hero { padding: 160px 0 72px; overflow: hidden; }
.hero-inner { text-align: center; }
.hero-copy { position: relative; width: 100%; min-width: 0; max-width: 1060px; margin-inline: auto; }
.hero-badge {
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 auto 25px;
  padding: 7px 12px;
  color: var(--blue-dark);
  border: 1px solid #cbdcf4;
  border-radius: 999px;
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 750;
}
.hero-badge span { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255, 146, 0, 0.15); }
.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 7.5vw, 6rem);
  line-height: 0.99;
  letter-spacing: -0.064em;
  font-weight: 800;
}
.hero-rotating-title > span:not(.sr-only) { display: block; }
.hero-prefix { margin-bottom: 12px; color: var(--ink); font-size: 0.2em; line-height: 1; letter-spacing: 0.16em; text-transform: uppercase; }
.hero-expertise { min-height: 1em; line-height: 0.98; transition: opacity 220ms ease, transform 220ms ease, color 220ms ease; }
.hero-expertise.tone-blue { color: var(--blue); }
.hero-expertise.tone-orange { color: var(--orange); }
.hero-expertise.is-changing { opacity: 0; transform: translateY(12px); }
.hero-closing { margin-top: 10px; font-size: 0.58em; line-height: 1.05; letter-spacing: -0.045em; }
.hero-lead { max-width: 720px; margin: 27px auto 0; color: var(--ink-soft); font-size: 20px; line-height: 1.48; }
.hero-actions { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }

.workspace-wrap {
  position: relative;
  margin-top: 88px;
  padding: 28px;
  border: 1px solid #cbdcf4;
  border-radius: 28px;
  background: var(--blue-soft);
}
.workspace-wrap::before, .workspace-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 2px solid var(--ink);
  border-radius: 50%;
}
.workspace-wrap::before { width: 68px; height: 34px; left: -38px; top: 28%; transform: rotate(62deg); border-left-color: transparent; border-bottom-color: transparent; }
.workspace-wrap::after { width: 56px; height: 56px; right: -29px; bottom: 23%; border-color: var(--orange); border-left-color: transparent; }
.workspace-sticker {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 850;
  box-shadow: 0 9px 22px rgba(25, 25, 25, 0.14);
}
.sticker-one { top: -25px; right: 54px; padding: 14px 20px; border-radius: 12px; background: var(--orange); transform: rotate(3deg); }
.sticker-two { width: 112px; height: 62px; left: -24px; bottom: 48px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); transform: rotate(-5deg); }
.sticker-two img { display: block; width: 100%; height: 100%; object-fit: contain; }
.workspace-window { overflow: hidden; border: 1.5px solid var(--ink); border-radius: 16px; background: var(--white); box-shadow: 0 18px 45px rgba(30, 70, 125, 0.13); text-align: left; }
.window-bar { height: 47px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 16px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; font-weight: 700; }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 9px; height: 9px; border: 1px solid #c4c4bf; border-radius: 50%; background: var(--gray); }
.window-status { display: inline-flex; justify-self: end; align-items: center; gap: 6px; }
.window-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.workspace-body { min-height: 500px; display: grid; grid-template-columns: 205px 1fr; }
.workspace-sidebar { display: flex; flex-direction: column; padding: 18px 12px; border-right: 1px solid var(--line); background: var(--cream); }
.workspace-account { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; padding: 3px 7px 17px; }
.workspace-account-logo { display: block; width: 104px; height: 42px; object-fit: contain; object-position: left center; }
.workspace-account small { color: var(--muted); font-size: 9px; }
.workspace-sidebar nav { display: flex; flex-direction: column; gap: 4px; }
.workspace-sidebar nav a { display: flex; align-items: center; gap: 9px; padding: 8px 9px; border-radius: 7px; color: #5d5d59; font-size: 11px; font-weight: 650; }
.workspace-sidebar nav a:hover, .workspace-sidebar nav a.active { color: var(--ink); background: #e8e8e4; }
.workspace-sidebar nav .nav-icon { width: 16px; height: 16px; display: grid; flex: 0 0 16px; place-items: center; color: var(--blue); }
.workspace-sidebar nav .nav-icon .ui-icon { width: 14px; height: 14px; }
.sidebar-note { margin-top: auto; padding: 13px; border: 1px solid var(--line); border-radius: 9px; background: var(--white); }
.sidebar-note span { display: block; color: var(--orange); font-size: 8px; font-weight: 850; text-transform: uppercase; letter-spacing: 0.1em; }
.sidebar-note strong { display: block; margin-top: 2px; font-size: 10px; }
.workspace-main { min-width: 0; padding: 28px 32px 34px; }
.workspace-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.workspace-heading > div { display: flex; flex-direction: column; }
.workspace-heading span { color: var(--muted); font-size: 9px; font-weight: 750; text-transform: uppercase; letter-spacing: 0.08em; }
.workspace-heading h2 { margin: 3px 0 0; font-size: 27px; letter-spacing: -0.045em; }
.workspace-heading button { padding: 8px 11px; color: var(--white); border: 0; border-radius: 7px; background: var(--blue); font-size: 10px; font-weight: 750; cursor: pointer; transition: background 150ms ease; }
.workspace-heading button:hover { background: var(--orange); }
.workspace-callout { display: flex; align-items: center; gap: 13px; margin-top: 23px; padding: 13px 15px; border: 1px solid #cadcf5; border-radius: 10px; background: var(--blue-soft); }
.callout-icon { width: 35px; height: 35px; display: grid; place-items: center; color: var(--white); border-radius: 8px; background: var(--blue); font-weight: 800; }
.callout-icon .ui-icon { width: 17px; height: 17px; }
.workspace-callout > div:last-child { display: flex; flex-direction: column; }
.workspace-callout span { color: var(--blue); font-size: 8px; font-weight: 850; text-transform: uppercase; letter-spacing: 0.1em; }
.workspace-callout strong { font-size: 11px; }
.board-title { display: flex; justify-content: space-between; margin: 25px 0 10px; font-size: 10px; }
.board-title span { color: var(--muted); }
.workspace-board { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.workspace-board article { min-width: 0; padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); transition: transform 160ms ease, box-shadow 160ms ease; }
.workspace-board article:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(25, 25, 25, 0.08); }
.card-top { display: flex; align-items: center; justify-content: space-between; }
.card-top i { padding: 3px 6px; color: var(--muted); border-radius: 5px; background: var(--gray); font-size: 7px; font-style: normal; font-weight: 850; text-transform: uppercase; }
.card-icon { width: 27px; height: 27px; display: grid; place-items: center; color: var(--white); border-radius: 7px; font-size: 10px; font-weight: 850; }
.card-icon .ui-icon { width: 15px; height: 15px; }
.card-icon.blue { background: var(--blue); }
.card-icon.orange { background: var(--orange); }
.card-icon.navy { background: var(--blue-dark); }
.workspace-board h3 { margin: 13px 0 5px; font-size: 14px; letter-spacing: -0.03em; }
.workspace-board p { min-height: 44px; margin: 0 0 13px; color: var(--muted); font-size: 9px; line-height: 1.45; }
.task-row { display: flex; justify-content: space-between; padding: 7px 0; border-top: 1px solid #ecece8; color: var(--muted); font-size: 8px; }
.task-row b { color: var(--green); font-weight: 750; }

.creative-showcase-wrap {
  padding: 30px;
  background:
    radial-gradient(circle at 7% 18%, rgba(255, 146, 0, 0.18) 0 58px, transparent 59px),
    radial-gradient(circle at 94% 82%, rgba(18, 100, 232, 0.16) 0 82px, transparent 83px),
    linear-gradient(145deg, #f1f6ff, #dfeeff);
}
.creative-showcase { box-shadow: 0 22px 55px rgba(23, 63, 107, 0.17); }
.creative-stage { min-height: 520px; display: grid; grid-template-columns: 280px minmax(0, 1fr); }
.creative-profile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 40px 30px 32px;
  color: var(--white);
  background: linear-gradient(155deg, #173f6b 0%, #0e2d52 72%, #0a2444 100%);
}
.creative-profile::before,
.creative-profile::after { content: ""; position: absolute; z-index: -1; border-radius: 50%; }
.creative-profile::before { width: 205px; height: 205px; top: -105px; right: -90px; border: 34px solid rgba(255, 146, 0, 0.86); }
.creative-profile::after { width: 150px; height: 150px; left: -85px; bottom: 44px; border: 28px solid rgba(255, 255, 255, 0.08); }
.creative-profile-logo { width: 155px; height: 72px; display: grid; place-items: center; padding: 9px 13px; border-radius: 15px; background: var(--white); box-shadow: 8px 8px 0 rgba(255, 146, 0, 0.95); }
.creative-profile-logo img { width: 100%; height: 100%; object-fit: contain; }
.creative-profile > p { margin: 31px 0 8px; color: #ffb146; font-size: 9px; font-weight: 850; letter-spacing: 0.14em; text-transform: uppercase; }
.creative-profile h3 { max-width: 205px; margin: 0; font-size: 26px; line-height: 1.08; letter-spacing: -0.045em; }
.creative-location { display: flex; flex-direction: column; gap: 3px; margin-top: auto; padding-top: 30px; }
.creative-location span { color: rgba(255,255,255,0.56); font-size: 8px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.creative-location strong { font-size: 12px; }
.creative-profile-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; margin-top: 17px; }
.creative-profile-services span { padding: 7px 8px; border: 1px solid rgba(255,255,255,0.17); border-radius: 7px; background: rgba(255,255,255,0.07); font-size: 9px; font-weight: 750; text-align: center; }
.creative-main { min-width: 0; padding: 40px 44px 30px; background: linear-gradient(145deg, #ffffff 0%, #ffffff 58%, #f6f9fd 100%); }
.creative-kicker { margin: 0 0 11px; color: var(--blue); font-size: 9px; font-weight: 850; letter-spacing: 0.14em; text-transform: uppercase; }
.creative-main > h2 { max-width: 740px; margin: 0; font-size: clamp(34px, 4vw, 50px); line-height: 0.99; letter-spacing: -0.055em; }
.creative-intro { max-width: 670px; margin: 16px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.creative-path { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 12px; margin: 24px 0 18px; padding: 12px 15px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--blue-dark); text-align: center; }
.creative-path span { font-size: 10px; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.creative-path i { color: var(--orange); font-size: 14px; font-style: normal; font-weight: 850; }
.creative-service-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.creative-service-card { position: relative; isolation: isolate; min-width: 0; overflow: hidden; min-height: 132px; padding: 17px 18px; border-radius: 14px; color: var(--white); box-shadow: 0 12px 24px rgba(23,63,107,0.14); }
.creative-service-card::after { content: ""; position: absolute; z-index: -1; width: 125px; height: 125px; right: -55px; bottom: -72px; border: 22px solid rgba(255,255,255,0.17); border-radius: 50%; }
.creative-card-blue { background: linear-gradient(135deg, #1264e8, #174b9d); }
.creative-card-orange { background: linear-gradient(135deg, #ff9200, #e46f00); }
.creative-service-card > div { display: flex; align-items: center; justify-content: space-between; }
.creative-card-icon { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.2); border-radius: 9px; background: rgba(255,255,255,0.14); }
.creative-card-icon .ui-icon { width: 18px; height: 18px; }
.creative-service-card small { color: rgba(255,255,255,0.56); font-size: 22px; font-weight: 850; }
.creative-service-card h3 { margin: 13px 0 4px; font-size: 19px; letter-spacing: -0.035em; }
.creative-service-card p { margin: 0; color: rgba(255,255,255,0.78); font-size: 9px; line-height: 1.45; }
.creative-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 17px; }
.creative-facts span { display: flex; flex-direction: column; padding-left: 11px; border-left: 3px solid var(--blue); }
.creative-facts span:nth-child(2) { border-left-color: var(--orange); }
.creative-facts span:nth-child(3) { border-left-color: var(--green); }
.creative-facts strong { font-size: 17px; line-height: 1; }
.creative-facts small { margin-top: 4px; color: var(--muted); font-size: 8px; }

.facts { padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream); }
.facts-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; align-items: center; gap: 60px; }
.facts-inner > p { margin: 0; font-weight: 750; letter-spacing: -0.02em; }
.fact-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; }
.fact-list span { display: flex; align-items: center; gap: 9px; color: var(--ink-soft); font-size: 13px; }
.fact-list i { color: var(--orange); font-size: 9px; font-style: normal; font-weight: 850; }

.section { padding: 112px 0; }
.eyebrow { margin: 0 0 17px; color: var(--blue); font-size: 12px; font-weight: 850; letter-spacing: 0.11em; text-transform: uppercase; }
.center-heading { max-width: 900px; margin: 0 auto 52px; text-align: center; }
.center-heading h2, .model-copy h2, .split-heading h2, .faq-heading h2, .cta-card h2 {
  margin: 0;
  font-size: clamp(3rem, 5.4vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.center-heading > p:last-child { max-width: 620px; margin: 20px auto 0; color: var(--ink-soft); font-size: 18px; }

.services { background: var(--white); }
.service-explorer { overflow: hidden; border: 1.5px solid var(--ink); border-radius: 18px; box-shadow: 0 10px 0 var(--ink); }
.service-tabs { display: grid; grid-template-columns: repeat(2, 1fr); border-bottom: 1px solid var(--line); background: var(--gray); }
.service-tabs button { position: relative; display: flex; align-items: center; gap: 12px; padding: 18px; color: var(--muted); border: 0; border-right: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; }
.service-tabs button:last-child { border-right: 0; }
.service-tabs button::after { content: ""; position: absolute; inset: auto 20px 0; height: 3px; border-radius: 3px 3px 0 0; background: transparent; }
.service-tabs button[aria-selected="true"] { color: var(--ink); background: var(--white); }
.service-tabs button[aria-selected="true"]::after { background: var(--blue); }
.service-tabs button > span:last-child { display: flex; flex-direction: column; line-height: 1.25; }
.service-tabs strong { font-size: 13px; }
.service-tabs small { margin-top: 3px; font-size: 10px; }
.tab-icon { flex: 0 0 auto; width: 35px; height: 35px; display: grid; place-items: center; color: var(--white); border-radius: 9px; font-size: 12px; font-weight: 850; }
.tab-icon .ui-icon { width: 19px; height: 19px; }
.tab-icon-blue { background: var(--blue); }
.tab-icon-orange { background: var(--orange); }
.tab-icon-navy { background: var(--blue-dark); }
.service-panel { min-height: 590px; display: grid; grid-template-columns: 0.9fr 1.1fr; }
.service-panel[data-service-panel="build"] { background: var(--blue-soft); }
.service-panel[data-service-panel="market"] { background: var(--orange-soft); }
.panel-copy { padding: clamp(35px, 5vw, 64px); background: rgba(255, 255, 255, 0.42); }
.panel-label { margin: 0 0 17px; color: var(--blue); font-size: 11px; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.service-panel[data-service-panel="market"] .panel-label { color: #c06b00; }
.panel-copy h3 { margin: 0; font-size: clamp(2rem, 3.3vw, 3.25rem); line-height: 1.06; letter-spacing: -0.05em; }
.panel-copy > p:not(.panel-label) { margin: 18px 0 0; color: var(--ink-soft); }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 29px; padding-top: 24px; border-top: 1px solid rgba(25, 25, 25, 0.17); }
.service-tags button { padding: 9px 13px; border: 1px solid rgba(25, 25, 25, 0.2); border-radius: 999px; background: rgba(255, 255, 255, 0.72); color: var(--ink-soft); font: inherit; font-size: 11px; font-weight: 750; line-height: 1.2; cursor: pointer; transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease; }
.service-tags button:hover { transform: translateY(-2px); border-color: var(--ink); color: var(--ink); }
.service-tags button[aria-selected="true"] { border-color: var(--blue); background: var(--blue); color: var(--white); }
.service-panel[data-service-panel="market"] .service-tags button[aria-selected="true"] { border-color: var(--orange); background: var(--orange); }
.service-tags button[aria-selected="true"]:hover { border-color: var(--orange); background: var(--orange); color: var(--white); }
.service-panel[data-service-panel="market"] .service-tags button[aria-selected="true"]:hover { border-color: var(--blue); background: var(--blue); }
.service-tags button:focus-visible { outline: 3px solid rgba(31, 107, 232, 0.27); outline-offset: 2px; }
.service-detail { min-height: 150px; margin-top: 18px; padding: 19px 21px; border: 1px solid rgba(25, 25, 25, 0.16); border-radius: 13px; background: rgba(255, 255, 255, 0.75); }
.service-detail article > span { display: block; margin-bottom: 6px; color: var(--blue); font-size: 9px; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.service-panel[data-service-panel="market"] .service-detail article > span { color: #c06b00; }
.service-detail h4 { margin: 0; font-size: 20px; letter-spacing: -0.025em; }
.service-detail p { margin: 8px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }
.panel-visual { position: relative; isolation: isolate; min-width: 0; min-height: 590px; overflow: hidden; display: grid; place-items: center; padding: 45px; }
.panel-visual::before { content: ""; position: absolute; width: 440px; height: 440px; border: 1px solid rgba(25, 25, 25, 0.12); border-radius: 50%; }
.panel-visual::after { content: ""; position: absolute; z-index: -1; width: 330px; height: 330px; right: -105px; top: -95px; border-radius: 50%; background: radial-gradient(circle, rgba(18, 100, 232, 0.18), rgba(18, 100, 232, 0)); }
.service-panel[data-service-panel="market"] .panel-visual::after { background: radial-gradient(circle, rgba(255, 146, 0, 0.22), rgba(255, 146, 0, 0)); }
.service-visual { position: relative; z-index: 1; width: 100%; min-height: 500px; display: grid; place-items: center; animation: service-visual-in 240ms ease both; }
@keyframes service-visual-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.browser-frame, .campaign-board, .visual-card { position: relative; z-index: 2; width: min(520px, 100%); border: 1.5px solid var(--ink); border-radius: 13px; background: linear-gradient(145deg, #fff 0%, #fbfdff 100%); box-shadow: 12px 12px 0 rgba(25, 25, 25, 0.13), 0 24px 55px rgba(23, 63, 107, 0.1); }
.browser-top { height: 37px; display: flex; align-items: center; gap: 5px; padding: 0 11px; border-bottom: 1px solid var(--line); }
.browser-top span { width: 7px; height: 7px; border-radius: 50%; background: #d8d8d4; }
.browser-top b { margin-left: 11px; color: var(--muted); font-size: 8px; font-weight: 650; }
.browser-page { padding: 22px; background: linear-gradient(180deg, #fff 0 56%, #fbfdff 100%); }
.mini-nav { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.mini-nav i { width: 25px; height: 25px; margin-right: auto; border-radius: 6px; background: var(--blue-dark); }
.mini-nav span { width: 28px; height: 4px; border-radius: 3px; background: #d5d5d1; }
.mini-hero { position: relative; padding: 45px 12px 35px; text-align: center; }
.mini-hero::before, .mini-hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(1px); }
.mini-hero::before { width: 66px; height: 66px; top: 28px; left: 3%; background: rgba(255, 146, 0, 0.12); }
.mini-hero::after { width: 92px; height: 92px; right: 2%; bottom: 8px; background: rgba(18, 100, 232, 0.1); }
.mini-hero small { display: block; color: var(--orange); font-size: 7px; font-weight: 850; letter-spacing: 0.14em; }
.mini-hero strong { position: relative; z-index: 1; max-width: 300px; display: block; margin: 10px auto; font-size: 27px; line-height: 1.05; letter-spacing: -0.055em; }
.mini-hero em { position: relative; z-index: 1; width: 58px; height: 18px; display: block; margin: 16px auto 0; border-radius: 5px; background: var(--blue); box-shadow: 0 5px 12px rgba(18, 100, 232, 0.2); }
.mini-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mini-cards span { height: 70px; border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(145deg, #fff, var(--blue-soft)); }
.mini-cards span:nth-child(2) { background: linear-gradient(145deg, #fff, var(--orange-soft)); }
.mini-cards span:nth-child(3) { background: linear-gradient(145deg, #fff, #e8f7f1); }
.service-visual[data-service-visual="build-web"] .browser-frame { transform: translate(-19px, -17px); }
.device-previews { position: absolute; z-index: 4; right: -5px; bottom: 6px; display: flex; align-items: flex-end; gap: 8px; }
.mini-tablet, .mini-phone { overflow: hidden; border: 5px solid var(--ink); background: var(--white); box-shadow: 7px 8px 0 rgba(25, 25, 25, 0.18); }
.mini-tablet { width: 128px; height: 164px; padding: 9px; border-radius: 12px; }
.mini-phone { position: relative; width: 71px; height: 133px; padding: 13px 7px 7px; border-radius: 14px; border-color: var(--blue-dark); }
.phone-speaker { position: absolute; top: 5px; left: 50%; width: 18px; height: 3px; transform: translateX(-50%); border-radius: 4px; background: var(--blue-dark); }
.device-nav { display: flex; align-items: center; justify-content: flex-end; gap: 4px; }
.device-nav i { width: 13px; height: 13px; margin-right: auto; border-radius: 4px; background: var(--blue-dark); }
.device-nav span { width: 18px; height: 3px; border-radius: 3px; background: #d5d5d1; }
.mini-phone .device-nav span { width: 15px; }
.device-hero { display: grid; gap: 5px; margin: 12px 0 10px; padding: 11px 7px; border-radius: 6px; background: linear-gradient(145deg, var(--blue-soft), #fff); }
.device-hero b { width: 72%; height: 5px; border-radius: 5px; background: var(--blue-dark); }
.device-hero span { width: 100%; height: 3px; border-radius: 5px; background: #c8d9ed; }
.device-hero span:last-child { width: 78%; }
.device-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
.device-grid i { height: 39px; border-radius: 5px; background: var(--orange-soft); }
.device-grid i:last-child { background: #e8f7f1; }
.mini-phone .device-hero { margin: 8px 0 7px; padding: 8px 5px; }
.mini-phone .device-grid i { height: 29px; }
.floating-tag { position: absolute; z-index: 3; padding: 10px 13px; color: var(--white); border: 1px solid var(--ink); border-radius: 9px; box-shadow: 4px 4px 0 var(--ink); font-size: 10px; font-weight: 850; }
.tag-search { left: 2%; top: 14%; background: var(--orange); transform: rotate(-5deg); }
.tag-mobile { right: 6%; bottom: 16%; background: var(--blue); transform: rotate(4deg); }
.tag-message { right: 7%; top: 19%; background: var(--blue-dark); transform: rotate(4deg); }
.visual-card { padding: 23px; }
.visual-card-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.visual-card-head strong { font-size: 14px; }
.visual-card-head span { padding: 5px 8px; color: #08754a; border: 1px solid rgba(28,155,102,0.18); border-radius: 999px; background: linear-gradient(135deg, #e8f7f1, #c9f1df); font-size: 8px; font-weight: 850; box-shadow: 0 4px 10px rgba(28,155,102,0.12); }
.brand-hero { display: grid; grid-template-columns: 82px 1fr; align-items: center; gap: 22px; padding: 30px 8px 24px; }
.brand-hero > div { display: flex; flex-direction: column; }
.brand-hero small { color: var(--orange); font-size: 8px; font-weight: 850; letter-spacing: 0.12em; }
.brand-hero strong { max-width: 240px; margin-top: 6px; font-size: 25px; line-height: 1.05; letter-spacing: -0.04em; }
.brand-mark { position: relative; width: 74px; height: 74px; display: block; border-radius: 18px; background: var(--blue-dark); overflow: hidden; }
.brand-mark b { position: absolute; width: 45px; height: 45px; border: 8px solid var(--white); border-radius: 50%; }
.brand-mark b:first-child { top: -10px; left: -10px; }
.brand-mark b:last-child { right: -10px; bottom: -10px; border-color: var(--orange); }
.brand-palette { display: flex; gap: 7px; padding: 16px 0; border-top: 1px solid var(--line); }
.brand-palette span { height: 19px; flex: 1; border-radius: 5px; }
.brand-palette span:nth-child(1) { background: var(--blue-dark); }
.brand-palette span:nth-child(2) { background: var(--blue); }
.brand-palette span:nth-child(3) { background: var(--orange); }
.brand-palette span:nth-child(4) { background: var(--cream); border: 1px solid var(--line); }
.brand-assets { display: grid; grid-template-columns: 1.15fr 0.85fr 0.85fr; gap: 8px; }
.brand-assets i { height: 62px; border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(135deg, #fff 0 55%, var(--blue-soft) 55%); }
.brand-assets i:nth-child(2) { background: linear-gradient(145deg, var(--orange-soft) 0 52%, #fff 52%); }
.brand-assets i:nth-child(3) { background: linear-gradient(145deg, var(--blue-dark) 0 42%, #fff 42%); }
.search-board { background: linear-gradient(155deg, #fff 0 62%, #edf5ff 100%); }
.search-field { display: grid; grid-template-columns: 23px 1fr auto; align-items: center; gap: 10px; margin: 20px 0 13px; padding: 13px 14px; border: 1px solid rgba(18,100,232,0.22); border-radius: 10px; background: var(--white); box-shadow: 0 9px 24px rgba(18,100,232,0.1); }
.search-field i { position: relative; width: 15px; height: 15px; border: 2px solid var(--blue); border-radius: 50%; }
.search-field i::after { content: ""; position: absolute; width: 7px; height: 2px; right: -5px; bottom: -2px; border-radius: 2px; background: var(--blue); transform: rotate(45deg); }
.search-field span { color: var(--muted); font-size: 10px; }
.search-field b { width: 58px; height: 24px; border-radius: 6px; background: var(--blue); }
.search-results { display: grid; gap: 9px; }
.search-results article { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 12px; padding: 12px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,0.88); }
.search-results article > i { position: relative; width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(145deg, var(--blue), var(--blue-dark)); }
.search-results article:nth-child(2) > i { background: linear-gradient(145deg, #ffba4b, var(--orange)); }
.search-results article:nth-child(3) > i { background: linear-gradient(145deg, #49bc8d, var(--green)); }
.search-results article > i::after { content: ""; position: absolute; inset: 11px 9px; border: 2px solid rgba(255,255,255,0.88); border-radius: 4px; }
.search-results article > div { display: grid; grid-template-columns: 1fr 0.68fr; gap: 4px 8px; }
.search-results small { grid-column: 1 / -1; color: var(--muted); font-size: 6px; font-weight: 850; letter-spacing: 0.08em; }
.search-results strong { grid-column: 1 / -1; font-size: 10px; }
.search-results article > div span { height: 4px; border-radius: 4px; background: #d9e3ef; }
.search-results article > b { padding: 5px 7px; color: var(--green); border-radius: 6px; background: #e8f7f1; font-size: 7px; }
.social-board { background: linear-gradient(150deg, #fff 0 52%, #fff3df 100%); }
.social-feature { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 18px; margin: 20px 0 14px; padding: 14px; border: 1px solid rgba(255,146,0,0.22); border-radius: 12px; background: rgba(255,255,255,0.82); box-shadow: 0 12px 28px rgba(255,146,0,0.09); }
.social-art { position: relative; min-height: 145px; overflow: hidden; border-radius: 10px; background: linear-gradient(145deg, var(--blue-dark), var(--blue)); }
.social-art::before, .social-art::after { content: ""; position: absolute; border-radius: 50%; }
.social-art::before { width: 105px; height: 105px; right: -32px; top: -35px; background: var(--orange); }
.social-art::after { width: 75px; height: 75px; left: -23px; bottom: -28px; border: 14px solid rgba(255,255,255,0.22); }
.social-art i { position: absolute; inset: 35% auto auto 16%; z-index: 1; width: 68%; height: 9px; border-radius: 6px; background: var(--white); }
.social-art span { position: absolute; inset: 49% auto auto 16%; z-index: 1; width: 47%; height: 6px; border-radius: 6px; background: rgba(255,255,255,0.74); }
.social-art b { position: absolute; left: 16%; bottom: 17%; z-index: 1; width: 42px; height: 18px; border-radius: 5px; background: var(--orange); }
.social-feature > div:last-child { align-self: center; }
.social-feature small, .ad-copy small { color: var(--orange); font-size: 7px; font-weight: 850; letter-spacing: 0.1em; }
.social-feature strong { display: block; margin-top: 6px; font-size: 19px; line-height: 1.08; letter-spacing: -0.03em; }
.social-feature p { margin: 9px 0; color: var(--muted); font-size: 9px; }
.social-feature button, .ad-copy button { padding: 7px 10px; color: var(--white); border: 0; border-radius: 6px; background: var(--blue); font-size: 8px; font-weight: 800; transition: background 150ms ease; }
.social-feature button:hover { background: var(--orange); }
.social-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.social-cards article { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 8px; padding: 9px; border: 1px solid var(--line); border-radius: 9px; background: var(--white); }
.social-cards article > i { width: 38px; height: 38px; border-radius: 7px; background: linear-gradient(145deg, var(--blue), #74a8fa); }
.social-cards article:nth-child(2) > i { background: linear-gradient(145deg, var(--orange), #ffd08a); }
.social-cards article:nth-child(3) > i { background: linear-gradient(145deg, var(--blue-dark), #6f91b5); }
.social-cards article span { display: flex; flex-direction: column; }
.social-cards b { font-size: 8px; }
.social-cards small { color: var(--muted); font-size: 6px; }
.ad-creative-board { background: linear-gradient(150deg, #fff 0 55%, #edf5ff 100%); }
.ad-creative { display: grid; grid-template-columns: 0.85fr 1.15fr; min-height: 215px; margin: 20px 0 13px; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: 0 13px 30px rgba(23,63,107,0.1); }
.ad-image { position: relative; overflow: hidden; background: linear-gradient(145deg, var(--orange), #ffbd55); }
.ad-image::before { content: ""; position: absolute; width: 150px; height: 150px; left: -50px; top: -52px; border: 20px solid rgba(255,255,255,0.25); border-radius: 50%; }
.ad-image i { position: absolute; width: 78px; height: 78px; right: 18px; bottom: 28px; border-radius: 20px; background: var(--blue-dark); transform: rotate(9deg); box-shadow: -12px 12px 0 rgba(255,255,255,0.35); }
.ad-image span { position: absolute; left: 18px; bottom: 31px; width: 72px; height: 8px; border-radius: 8px; background: var(--white); }
.ad-image b { position: absolute; left: 18px; bottom: 17px; width: 48px; height: 5px; border-radius: 8px; background: rgba(255,255,255,0.7); }
.ad-copy { align-self: center; padding: 20px; }
.ad-copy strong { display: block; margin: 8px 0 14px; font-size: 18px; line-height: 1.08; letter-spacing: -0.03em; }
.ad-copy > span { width: 100%; height: 5px; display: block; margin-top: 6px; border-radius: 5px; background: #dbe4ef; }
.ad-copy > span:nth-of-type(2) { width: 72%; }
.ad-copy button { margin-top: 15px; background: var(--orange); }
.ad-copy button:hover { background: var(--blue); }
.ad-setup { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ad-setup article { display: grid; grid-template-columns: 28px 1fr; align-items: center; gap: 8px; padding: 9px; border: 1px solid rgba(18,100,232,0.13); border-radius: 9px; background: rgba(255,255,255,0.82); }
.ad-setup article > i { position: relative; width: 28px; height: 28px; border-radius: 8px; background: var(--blue); }
.ad-setup article:nth-child(2) > i { background: var(--orange); }
.ad-setup article:nth-child(3) > i { background: var(--green); }
.ad-setup article > i::after { content: ""; position: absolute; inset: 8px; border: 2px solid var(--white); border-radius: 50%; }
.ad-setup article > div { display: flex; flex-direction: column; }
.ad-setup small { color: var(--muted); font-size: 6px; font-weight: 850; letter-spacing: 0.08em; }
.ad-setup strong { font-size: 8px; }
.creator-row { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.creator-row:last-child { border-bottom: 0; }
.creator-row > i { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--blue)); box-shadow: inset 0 0 0 5px rgba(255,255,255,0.55); }
.creator-row:nth-child(3) > i { background: linear-gradient(135deg, var(--blue-dark), #65a9d8); }
.creator-row:nth-child(4) > i { background: linear-gradient(135deg, #ffbd65, var(--orange)); }
.creator-row > div { display: flex; flex-direction: column; }
.creator-row strong { font-size: 11px; }
.creator-row small { color: var(--muted); font-size: 8px; }
.creator-row > b { padding: 5px 7px; color: var(--blue-dark); border-radius: 5px; background: var(--blue-soft); font-size: 7px; }
.model { padding-top: 30px; }
.model-card { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(45px, 7vw, 90px); padding: clamp(38px, 6vw, 72px); border: 1.5px solid var(--ink); border-radius: 24px; background: var(--orange-soft); }
.model-copy h2 { margin-bottom: 25px; }
.model-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 17px; }
.model-copy ul { margin: 30px 0 0; padding: 0; list-style: none; }
.model-copy li { display: flex; gap: 10px; margin: 13px 0; font-weight: 650; }
.model-copy li span { color: var(--blue); }
.model-visual { position: relative; align-self: center; padding: 27px; border: 1.5px solid var(--ink); border-radius: 15px; background: var(--white); box-shadow: 10px 10px 0 var(--ink); }
.model-note { position: absolute; top: -17px; right: 22px; padding: 8px 11px; color: var(--white); border: 1px solid var(--ink); border-radius: 7px; background: var(--orange); transform: rotate(3deg); font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: 0.08em; }
.allocation-card { padding: 15px; border: 1px solid var(--line); border-radius: 10px; background: var(--cream); }
.allocation-head { display: flex; justify-content: space-between; gap: 15px; margin-bottom: 11px; }
.allocation-head strong { font-size: 12px; }
.allocation-head span { color: var(--muted); font-size: 9px; }
.allocation-bar { height: 54px; display: flex; overflow: hidden; border-radius: 7px; }
.allocation-bar i { min-width: 0; display: grid; place-items: center; padding: 4px; color: var(--white); border-right: 1px solid rgba(255, 255, 255, 0.55); font-size: 8px; font-style: normal; font-weight: 750; text-align: center; }
.fixed-one { flex: 1.3; background: #888883; }
.fixed-two { flex: 1; background: #aaa9a4; }
.fixed-three { flex: 1.15; background: #6d6d68; }
.creative-one { flex: 0.7; background: var(--blue-dark); }
.creative-two { flex: 2.1; background: var(--blue); }
.creative-three { flex: 0.55; background: var(--orange); }
.allocation-arrow { height: 35px; display: grid; place-items: center; color: var(--orange); font-size: 24px; font-weight: 850; }
.model-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 18px; }
.model-metrics div { padding: 10px; border-radius: 7px; background: var(--blue-soft); }
.model-metrics span { display: block; color: var(--muted); font-size: 7px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.model-metrics strong { display: block; margin-top: 3px; font-size: 10px; }
.model-visual > p { margin: 14px 0 0; color: var(--muted); font-size: 8px; }

.process { background: var(--cream); }
.process-heading { max-width: 800px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 65px 0 0; padding: 0; border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); list-style: none; }
.process-grid li { position: relative; min-height: 300px; padding: 28px; border-right: 1px solid var(--line); background: var(--white); }
.process-grid li:last-child { border-right: 0; }
.process-grid li:nth-child(2) { background: var(--blue-soft); }
.process-grid li:nth-child(3) { background: var(--orange-soft); }
.process-grid li > span { width: 43px; height: 43px; display: grid; place-items: center; color: var(--white); border-radius: 11px; background: var(--blue-dark); font-size: 17px; font-weight: 850; transform: rotate(-3deg); }
.process-grid li:nth-child(2) > span { background: var(--blue); transform: rotate(3deg); }
.process-grid li:nth-child(3) > span { background: var(--orange); transform: rotate(-2deg); }
.process-grid li:nth-child(4) > span { background: var(--ink); transform: rotate(2deg); }
.process-grid li > div { margin-top: 62px; }
.process-grid small { color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.process-grid h3 { margin: 6px 0 10px; font-size: 22px; letter-spacing: -0.04em; }
.process-grid p { margin: 0; color: var(--ink-soft); font-size: 13px; }

.why-us { background: var(--white); }
.split-heading { display: grid; grid-template-columns: 1.25fr 0.75fr; align-items: end; gap: 80px; margin-bottom: 52px; }
.split-heading > p { margin: 0; color: var(--ink-soft); font-size: 17px; }
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.value-card { position: relative; min-height: 300px; overflow: hidden; padding: 35px; border: 1.5px solid var(--ink); border-radius: 17px; }
.value-card > span { color: var(--muted); font-size: 10px; font-weight: 850; }
.value-card h3 { max-width: 390px; margin: 60px 0 12px; font-size: 31px; line-height: 1.08; letter-spacing: -0.05em; }
.value-card p { max-width: 450px; margin: 0; color: var(--ink-soft); }
.value-card > i { position: absolute; right: 26px; top: 24px; color: rgba(25, 25, 25, 0.22); font-style: normal; line-height: 1; }
.value-card .value-icon { display: block; width: 67px; height: 67px; stroke-width: 1.35; }
.value-blue { background: var(--blue-soft); }
.value-orange { background: var(--orange-soft); }
.value-cream { background: var(--cream); }
.value-gray { background: var(--gray); }
.honesty-note { display: grid; grid-template-columns: 125px 1fr auto; align-items: center; gap: 32px; margin-top: 18px; padding: 30px 35px; border: 1.5px solid var(--ink); border-radius: 17px; background: var(--blue-dark); color: var(--white); }
.honesty-mark { width: 112px; height: 64px; display: grid; place-items: center; padding: 9px 11px; border-radius: 14px; background: var(--white); }
.honesty-mark img { display: block; width: 100%; height: 100%; object-fit: contain; }
.honesty-note blockquote { margin: 0; font-size: clamp(1.45rem, 2.5vw, 2.3rem); line-height: 1.17; letter-spacing: -0.04em; font-weight: 700; }
.text-button { display: inline-flex; gap: 10px; padding: 10px 0; color: var(--white); border: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.6); background: transparent; font-weight: 750; cursor: pointer; white-space: nowrap; }

.faq { background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(55px, 9vw, 130px); align-items: start; }
.faq-heading { position: sticky; top: 110px; }
.faq-heading h2 { margin-bottom: 24px; }
.faq-heading > p:last-child { color: var(--ink-soft); }
.faq-heading a { color: var(--blue); font-weight: 750; }
.faq-list { border-top: 1.5px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 750; letter-spacing: -0.02em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue); font-size: 24px; font-weight: 400; transition: transform 160ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 660px; margin: -4px 42px 24px 0; color: var(--ink-soft); }

.final-cta { background: var(--white); }
.cta-card { position: relative; overflow: hidden; padding: clamp(60px, 9vw, 110px) 30px; border: 1.5px solid var(--ink); border-radius: 24px; background: var(--blue-soft); text-align: center; }
.cta-card > p { margin: 0 0 15px; color: var(--orange); font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: 0.11em; }
.cta-card h2 { max-width: 800px; margin-inline: auto; }
.cta-card > span { max-width: 650px; display: block; margin: 22px auto 0; color: var(--ink-soft); font-size: 18px; }
.cta-card > div:last-child { display: flex; justify-content: center; gap: 11px; margin-top: 30px; }
.cta-doodle { position: absolute; border: 3px solid var(--orange); border-radius: 50%; }
.doodle-one { width: 110px; height: 52px; left: -35px; top: 70px; transform: rotate(55deg); border-left-color: transparent; }
.doodle-two { width: 95px; height: 95px; right: -33px; bottom: 70px; border-right-color: transparent; border-bottom-color: transparent; }

.site-footer { padding: 70px 0 28px; border-top: 1px solid var(--line); background: var(--cream); }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(3, 0.7fr); gap: 55px; }
.footer-brand img { width: 170px; }
.footer-brand p { max-width: 330px; margin: 25px 0; color: var(--ink-soft); }
.footer-brand > a:not(:first-child) { display: block; width: max-content; margin: 5px 0; color: var(--blue-dark); font-size: 14px; font-weight: 650; }
.footer-column { display: flex; flex-direction: column; gap: 10px; }
.footer-column > span { margin-bottom: 10px; font-size: 13px; font-weight: 800; }
.footer-column a { color: var(--ink-soft); font-size: 13px; }
.footer-column a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 65px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }

.contact-dialog { width: min(1000px, calc(100% - 32px)); max-height: min(90vh, 760px); padding: 0; overflow: auto; border: 1.5px solid var(--ink); border-radius: 20px; background: var(--white); box-shadow: 0 30px 120px rgba(0, 0, 0, 0.3); }
.contact-dialog::backdrop { background: rgba(25, 25, 25, 0.62); backdrop-filter: blur(5px); }
.dialog-layout { min-height: 620px; display: grid; grid-template-columns: 0.82fr 1.18fr; }
.dialog-intro { position: relative; display: flex; flex-direction: column; padding: 45px; background: var(--blue-soft); }
.dialog-close { position: absolute; top: 15px; right: 15px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; background: var(--white); font-size: 25px; line-height: 1; cursor: pointer; }
.dialog-intro > img { width: 145px; margin-bottom: 55px; }
.dialog-intro h2 { margin: 0; font-size: 42px; line-height: 1.04; letter-spacing: -0.055em; }
.dialog-intro > p:not(.eyebrow) { color: var(--ink-soft); }
.dialog-intro > div:last-child { display: flex; flex-direction: column; gap: 6px; margin-top: auto; color: var(--blue-dark); font-size: 13px; font-weight: 700; }
.contact-form { align-self: center; padding: 45px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-form label { display: block; margin-bottom: 17px; font-size: 12px; font-weight: 750; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; padding: 12px 13px; color: var(--ink); border: 1px solid #cfcfca; border-radius: 8px; outline: 0; background: var(--white); }
.contact-form textarea { min-height: 125px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(18, 100, 232, 0.13); }
.button-submit { width: 100%; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 10px; text-align: center; }
.form-note a { color: var(--blue); font-weight: 750; text-decoration: underline; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .header-inner { grid-template-columns: 175px 1fr 230px; }
  .site-nav { gap: 20px; }
  .site-nav a { font-size: 13px; }
  .workspace-body { grid-template-columns: 170px 1fr; }
  .workspace-sidebar { padding-inline: 9px; }
  .workspace-main { padding-inline: 24px; }
  .creative-stage { grid-template-columns: 240px minmax(0, 1fr); }
  .creative-main { padding-inline: 32px; }
  .creative-main > h2 { font-size: 40px; }
  .model-card { grid-template-columns: 1fr; }
  .model-copy { max-width: 760px; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 34px, 760px); }
  .header-inner { width: calc(100% - 26px); display: flex; justify-content: space-between; }
  .brand { position: relative; z-index: 3; width: 125px; }
  .brand img { width: 125px; }
  .menu-toggle { position: relative; z-index: 3; display: flex; flex: 0 0 44px; }
  .menu-toggle[aria-expanded="true"] { border-color: var(--orange); background: var(--orange); }
  .menu-toggle[aria-expanded="true"] > span:not(.sr-only) { width: 22px; margin-left: 0; background: var(--white); }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    z-index: 2;
    inset: 70px 0 auto;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 28px 22px 32px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    background: var(--white);
    transition: 170ms ease;
  }
  .site-nav.open { visibility: visible; opacity: 1; transform: none; }
  .site-nav a { padding: 17px 3px; border-bottom: 1px solid var(--line); font-size: 22px; }
  .site-nav a::after { display: none; }
  .site-nav .mobile-nav-cta { display: inline-flex; width: 100%; margin-top: auto; margin-bottom: 70px; }
  .header-actions { display: none; }
  .hero { padding-top: 135px; }
  .workspace-wrap { margin-top: 65px; padding: 16px; }
  .workspace-body { grid-template-columns: 1fr; }
  .workspace-sidebar { display: none; }
  .workspace-main { padding: 24px 20px; }
  .workspace-board { grid-template-columns: repeat(2, minmax(180px, 1fr)); overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .workspace-board article { scroll-snap-align: start; }
  .creative-stage { grid-template-columns: 1fr; }
  .creative-profile { min-height: 250px; padding: 30px; }
  .creative-profile h3 { max-width: 430px; }
  .creative-location { margin-top: 26px; }
  .creative-profile-services { max-width: 420px; display: flex; }
  .creative-profile-services span { min-width: 72px; }
  .creative-main { padding: 36px 30px 30px; }
  .facts-inner { grid-template-columns: 1fr; gap: 20px; }
  .service-tabs { grid-template-columns: 1fr; }
  .service-tabs button { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-tabs button:last-child { border-bottom: 0; }
  .service-tabs button::after { inset: 10px auto 10px 0; width: 3px; height: auto; }
  .service-panel { grid-template-columns: 1fr; }
  .panel-visual { min-height: 470px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid li:nth-child(2) { border-right: 0; }
  .process-grid li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split-heading, .faq-layout { grid-template-columns: 1fr; gap: 28px; }
  .faq-heading { position: static; }
  .honesty-note { grid-template-columns: 125px 1fr; }
  .honesty-note .text-button { grid-column: 2; justify-self: start; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-column:last-child { grid-column: 2; }
  .dialog-layout { grid-template-columns: 1fr; }
  .dialog-intro { padding: 35px; }
  .dialog-intro > img { margin-bottom: 30px; }
  .dialog-intro > div:last-child { margin-top: 25px; }
}

@media (max-width: 620px) {
  :root { --shell: min(100% - 24px, 560px); }
  .hero { padding: 122px 0 52px; }
  .hero-badge { font-size: 10px; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 3.6rem); line-height: 0.98; letter-spacing: -0.052em; }
  .hero-prefix { margin-bottom: 9px; font-size: 0.25em; }
  .hero-expertise { width: 100%; min-width: 0; max-width: 100%; min-height: 2.05em; display: flex !important; align-items: center; justify-content: center; font-size: 0.82em; line-height: 1.04; white-space: normal; overflow-wrap: break-word; }
  .hero-closing { width: 100%; min-width: 0; max-width: 100%; margin-top: 5px; font-size: 0.48em; overflow-wrap: break-word; }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .workspace-wrap { margin-top: 55px; padding: 10px; border-radius: 20px; }
  .workspace-sticker { display: none; }
  .window-bar { grid-template-columns: 1fr auto; }
  .window-bar > span:nth-child(2) { display: none; }
  .workspace-heading { align-items: flex-start; }
  .workspace-heading h2 { font-size: 23px; }
  .workspace-callout { align-items: flex-start; }
  .workspace-board { grid-template-columns: repeat(2, 78vw); }
  .creative-showcase-wrap { padding: 10px; }
  .creative-profile { min-height: 310px; padding: 27px 22px 24px; }
  .creative-profile-logo { width: 140px; height: 65px; }
  .creative-profile h3 { max-width: 270px; font-size: 25px; }
  .creative-profile-services { display: grid; grid-template-columns: repeat(2, 1fr); max-width: none; }
  .creative-profile-services span { min-width: 0; }
  .creative-main { padding: 28px 20px 25px; }
  .creative-main > h2 { font-size: 34px; }
  .creative-intro { font-size: 13px; }
  .creative-path { gap: 5px; padding-inline: 7px; }
  .creative-path span { font-size: 8px; }
  .creative-path i { font-size: 10px; }
  .creative-service-cards { grid-template-columns: 1fr; }
  .creative-service-card { min-height: 126px; }
  .creative-facts { gap: 6px; }
  .creative-facts span { padding-left: 7px; }
  .creative-facts strong { font-size: 15px; }
  .creative-facts small { font-size: 7px; }
  .fact-list { grid-template-columns: 1fr; }
  .section { padding: 82px 0; }
  .center-heading h2, .model-copy h2, .split-heading h2, .faq-heading h2, .cta-card h2 { font-size: clamp(2.7rem, 12vw, 3.7rem); }
  .service-explorer { box-shadow: 0 7px 0 var(--ink); }
  .panel-copy { padding: 32px 22px; }
  .panel-copy h3 { font-size: 2.4rem; }
  .service-tags { gap: 7px; }
  .service-tags button { padding: 8px 11px; }
  .service-detail { min-height: 165px; padding: 18px; }
  .panel-visual { min-height: 390px; padding: 25px 17px; }
  .service-visual { min-height: 340px; }
  .panel-visual::before { width: 310px; height: 310px; }
  .browser-frame, .campaign-board, .visual-card { box-shadow: 7px 7px 0 rgba(25, 25, 25, 0.16); }
  .service-visual[data-service-visual="build-web"] .browser-frame { transform: translate(-8px, -12px); }
  .device-previews { right: 0; bottom: 0; transform: scale(0.78); transform-origin: right bottom; }
  .floating-tag { display: none; }
  .mini-hero { padding-block: 30px 24px; }
  .mini-hero strong { font-size: 22px; }
  .model { padding-top: 0; }
  .model-card { width: calc(100% - 16px); padding: 34px 20px; border-radius: 20px; }
  .model-visual { padding: 22px 15px; box-shadow: 7px 7px 0 var(--ink); }
  .allocation-head { flex-direction: column; gap: 2px; }
  .allocation-bar i { font-size: 7px; }
  .model-metrics { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 265px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid li:last-child { border-bottom: 0; }
  .process-grid li > div { margin-top: 40px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 280px; padding: 28px; }
  .value-card h3 { margin-top: 55px; font-size: 28px; }
  .honesty-note { grid-template-columns: 1fr; padding: 28px; }
  .honesty-note .text-button { grid-column: auto; }
  .honesty-note blockquote { font-size: 1.65rem; }
  .faq-list summary { font-size: 16px; }
  .cta-card { width: calc(100% - 16px); padding-inline: 22px; }
  .cta-card > div:last-child { flex-direction: column; align-items: stretch; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .contact-dialog { width: calc(100% - 16px); max-height: calc(100vh - 16px); border-radius: 15px; }
  .dialog-intro { padding: 28px 22px; }
  .dialog-intro h2 { font-size: 34px; }
  .dialog-close { top: 11px; right: 11px; }
  .contact-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Standard WordPress pages and posts */
.admin-bar .site-header { top: 32px; }
.cs-page-main { min-height: 70vh; padding: 145px 0 90px; background: var(--cream); }
.cs-page-shell { max-width: 920px; }
.cs-content-card,
.cs-archive-heading,
.cs-post-card {
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.cs-content-card h1,
.cs-archive-heading h1 {
  margin: 6px 0 28px;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}
.cs-entry-content { color: var(--ink-soft); font-size: 18px; }
.cs-entry-content > *:first-child { margin-top: 0; }
.cs-entry-content > *:last-child { margin-bottom: 0; }
.cs-entry-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.cs-entry-content h2,
.cs-entry-content h3 { color: var(--ink); line-height: 1.15; letter-spacing: -0.025em; }
.cs-entry-content img { height: auto; border-radius: 10px; }
.cs-entry-content blockquote { margin-inline: 0; padding-left: 22px; border-left: 4px solid var(--orange); }
.cs-post-grid { display: grid; gap: 24px; margin-top: 24px; }
.cs-post-card { padding: 32px; box-shadow: none; }
.cs-post-card > p { margin-top: 0; color: var(--muted); font-size: 13px; font-weight: 750; text-transform: uppercase; letter-spacing: 0.08em; }
.cs-post-card h2 { margin: 0 0 12px; font-size: clamp(1.8rem, 4vw, 2.5rem); line-height: 1.1; }
.cs-post-card h2 a:hover { color: var(--blue); }
.cs-not-found { text-align: center; }
.cs-not-found .button { margin-top: 14px; }

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

@media (max-width: 900px) {
  .admin-bar .site-nav { top: 70px; }
}

@media (max-width: 620px) {
  .cs-page-main { padding: 115px 0 70px; }
  .cs-content-card,
  .cs-archive-heading,
  .cs-post-card { padding: 26px 20px; }
}
