:root {
  --blue: #2f80ed;
  --blue-dark: #0f3a7a;
  --blue-ink: #123661;
  --blue-soft: #eaf4ff;
  --blue-pale: #f5faff;
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-soft: #eafaf0;
  --lp-navy-gradient: linear-gradient(135deg, #123b78 0%, #1557a8 100%);
  --lp-navy-bg: #164e96;
  --heading: #071f3f;
  --text: #111827;
  --muted: #374151;
  --soft: #f8fafc;
  --border: #dde7f3;
  --white: #fff;
  --shadow-sm: 0 8px 30px rgba(15, 58, 122, .07);
  --shadow-md: 0 18px 48px rgba(15, 58, 122, .12);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --header-height: 76px;
  --container: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
p, ul, ol, dl { margin-top: 0; }
h1, h2, h3, h4 { color: var(--heading); line-height: 1.4; letter-spacing: .01em; margin-top: 0; }

::selection { color: var(--blue-dark); background: #d6eaff; }

:focus-visible {
  outline: 3px solid rgba(47, 128, 237, .45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 8px;
  transform: translateY(-140%);
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(221, 231, 243, .82);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease;
}

.site-header.is-scrolled { box-shadow: 0 8px 26px rgba(15, 58, 122, .08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--blue-dark);
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  background: linear-gradient(145deg, #62a9ff, var(--blue));
  border-radius: 12px 17px 12px 17px;
  box-shadow: 0 7px 16px rgba(47, 128, 237, .24);
  transform: rotate(-8deg);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  background: var(--white);
  border-radius: 50%;
}

.brand-mark::before { width: 7px; height: 7px; top: 10px; left: 9px; }
.brand-mark::after { width: 7px; height: 7px; top: 10px; right: 8px; }
.brand-mark span { width: 17px; height: 7px; left: 11px; bottom: 8px; border-radius: 2px 2px 12px 12px; }

.brand-copy { display: grid; line-height: 1.04; }
.brand-copy strong { font-size: 19px; letter-spacing: .05em; }
.brand-copy small { margin-top: 3px; color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: .33em; }

.global-nav { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 700; }
.global-nav > a { position: relative; padding-block: 8px; transition: color .2s ease; }
.global-nav > a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: 3px; left: 0; height: 2px; background: var(--blue); transform: scaleX(0); transition: transform .2s ease; }
.global-nav > a:hover { color: var(--blue); }
.global-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); }
.global-nav .nav-cta { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 10px 16px; color: var(--white); background: linear-gradient(180deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 45%), linear-gradient(135deg, #34d399 0%, #22c55e 46%, #16a34a 100%); border: 1px solid rgba(22,163,74,.16); border-radius: 999px; box-shadow: 0 9px 20px rgba(22,163,74,.2), inset 0 1px 0 rgba(255,255,255,.34); font-size: 14px; font-weight: 850; line-height: 1.35; white-space: nowrap; transition: transform .2s ease, box-shadow .2s ease, filter .2s ease; }
.global-nav .nav-cta::after { content: "›"; display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; color: var(--white); background: rgba(255,255,255,.2); border-radius: 50%; font-size: 18px; font-weight: 700; line-height: 1; transition: transform .2s ease, background .2s ease; }
.global-nav .nav-cta:hover { color: var(--white); box-shadow: 0 13px 26px rgba(22,163,74,.27), inset 0 1px 0 rgba(255,255,255,.42); filter: saturate(1.05); transform: translateY(-2px); }
.global-nav .nav-cta:hover::after { background: rgba(255,255,255,.28); transform: translateX(2px); }
.global-nav .nav-cta:active { box-shadow: 0 6px 15px rgba(22,163,74,.2), inset 0 2px 4px rgba(10,91,49,.1); transform: translateY(0); }
.global-nav .nav-cta:focus-visible { outline: 3px solid rgba(47,128,237,.35); outline-offset: 3px; }
.header-cta-short { display: none; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 720px;
  padding: 0;
  background-color: var(--blue-pale);
  background-image:
    linear-gradient(90deg,
      rgba(255,255,255,.99) 0%,
      rgba(255,255,255,.97) 34%,
      rgba(234,244,255,.86) 52%,
      rgba(234,244,255,.46) 68%,
      rgba(234,244,255,.08) 100%),
    url("../img/hero.webp"),
    url("../img/hero-placeholder.svg");
  background-position: center, right center, right center;
  background-size: cover, cover, cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::after { content: ""; position: absolute; z-index: -2; inset: auto 0 0; height: 110px; background: linear-gradient(to bottom, transparent, rgba(234,244,255,.42)); }

.hero-grid { display: block; }
.hero-copy { position: relative; z-index: 2; max-width: 620px; padding: 68px 0 30px; }
.eyebrow { display: flex; align-items: center; gap: 9px; width: fit-content; margin-bottom: 20px; color: var(--blue-dark); font-size: 14px; font-weight: 800; letter-spacing: .07em; }
.eyebrow span { padding: 5px 11px; color: var(--white); background: var(--blue); border-radius: 999px; font-size: 12px; }
.hero h1 { margin-bottom: 27px; font-size: clamp(36px, 3.4vw, 52px); font-weight: 850; letter-spacing: -.035em; line-height: 1.38; }
.hero h1 > span { color: var(--blue); background: linear-gradient(transparent 72%, rgba(47,128,237,.15) 72%); }
.hero h1 .title-part { white-space: nowrap; }
.hero-lead { font-size: 16px; line-height: 1.9; }
.hero-lead p { margin-bottom: 13px; }
.hero-invitation { margin: 25px 0 22px; color: var(--blue-dark); font-weight: 800; font-size: 17px; }

.cta-unit { margin-top: 29px; text-align: center; }
.cta-unit-left { width: fit-content; margin-top: 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 62px;
  padding: 15px 28px;
  border: 0;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 2.4; }
.button-primary { color: var(--white); background: linear-gradient(135deg, #27cc65, var(--green)); box-shadow: 0 10px 24px rgba(34, 197, 94, .28), inset 0 1px rgba(255,255,255,.2); }
.button-primary:hover { color: var(--white); background: var(--green-dark); box-shadow: 0 14px 30px rgba(22, 163, 74, .29); transform: translateY(-2px); }
.cta-note { margin: 9px 0 0; color: var(--blue-dark); font-size: 14px; font-weight: 700; letter-spacing: .06em; }
.cta-note span { color: var(--green-dark); }

.hero-visual { position: relative; z-index: 1; display: none; align-self: center; padding: 12px 0; }
.hero-visual::before { content: ""; position: absolute; z-index: -1; inset: 29px -12px -2px 18px; background: rgba(217, 237, 255, .72); border: 1px solid rgba(47,128,237,.1); border-radius: 28px; }
.hero-visual picture { display: block; aspect-ratio: 1.08; background: var(--blue-soft); border: 1px solid rgba(221,231,243,.95); border-radius: 26px; box-shadow: 0 22px 52px rgba(15,58,122,.16); overflow: hidden; }
.hero-visual picture img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }

.hero-assurance { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr); max-width: 650px; margin: 0 0 48px; border: 1px solid rgba(221,231,243,.95); border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: 0 10px 30px rgba(15,58,122,.09); backdrop-filter: blur(8px); overflow: hidden; }
.hero-assurance > div { display: flex; align-items: center; justify-content: flex-start; gap: 11px; min-height: 78px; padding: 13px 15px; }
.hero-assurance > div + div { border-left: 1px solid var(--border); }
.assurance-icon { display: grid; place-items: center; flex: 0 0 auto; width: 44px; height: 44px; color: var(--blue); background: var(--blue-soft); border-radius: 50%; font-size: 14px; font-weight: 900; }
.hero-assurance p { display: grid; margin: 0; line-height: 1.45; }
.hero-assurance strong { color: var(--heading); font-size: 16px; }
.hero-assurance small { color: var(--muted); font-size: 14px; }

.section { padding: 108px 0; }
.section-white { background: var(--white); }
.section-soft { background: var(--soft); }
.section-blue { background: var(--blue-soft); }
.section-heading { max-width: 820px; margin: 0 auto 54px; text-align: center; }
.section-kicker { margin-bottom: 12px; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .2em; }
.section-heading h2 { margin-bottom: 19px; font-size: clamp(30px, 3vw, 40px); font-weight: 850; letter-spacing: -.02em; }
.section-heading > p:last-child { margin: 0; color: var(--text); }
.mobile-break { display: none; }
.text-narrow { max-width: 800px; margin-inline: auto; }
.center-copy { margin-top: 40px; text-align: center; }

.worry-section { background: linear-gradient(180deg, #fff 0%, #f7fbff 100%); }
.worry-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 1000px; margin-inline: auto; }
.worry-card { position: relative; min-height: 0; padding: 27px 31px 25px; background: var(--white); border: 1px solid var(--border); border-radius: 20px; box-shadow: 0 12px 34px rgba(15,58,122,.075); overflow: hidden; }
.worry-card::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--blue), #83bdff); }
.worry-card-icon { width: auto; height: auto; padding: 0; margin: 0 0 14px; background: none; border: 0; box-shadow: none; }
.worry-card-icon img { display: block; width: 84px; height: auto; aspect-ratio: 1; object-fit: contain; }
.worry-card h3 { margin-bottom: 8px; color: var(--blue-dark); font-size: 21px; }
.worry-card > p { max-width: 90%; margin: 0; color: var(--text); font-size: 16px; line-height: 1.78; }
.check-list { padding: 0; margin-bottom: 0; list-style: none; }
.check-list li { position: relative; padding-left: 22px; margin-bottom: 10px; font-size: 16px; line-height: 1.75; }
.check-list li::before { content: "✓"; position: absolute; top: 0; left: 0; color: var(--green-dark); font-weight: 900; }
.solution-bridge-section { padding-block: 96px; background: linear-gradient(180deg, #eaf4ff 0%, #f3f9ff 100%); }
.solution-bridge-card { max-width: 1120px; margin-inline: auto; padding: 56px 54px 46px; background: var(--white); border: 1px solid #d4e7fb; border-radius: 28px; box-shadow: 0 22px 58px rgba(15,58,122,.1); }
.solution-bridge-heading { max-width: 820px; margin: 0 auto 42px; text-align: center; }
.solution-bridge-heading h2 { margin-bottom: 16px; color: var(--blue-dark); font-size: clamp(28px, 3vw, 39px); letter-spacing: -.02em; }
.solution-bridge-heading > p:last-child { margin: 0; color: var(--text); }
.solution-mobile-break { display: none; }
.solution-compare { display: grid; grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr); align-items: center; }
.solution-path { position: relative; height: 100%; padding: 31px 30px 28px; border-radius: 20px; }
.solution-path-usual { color: var(--muted); background: #f8fafc; border: 1px solid #e2e8f0; }
.solution-path-toretama { color: var(--blue-dark); background: linear-gradient(155deg, #f7fbff 0%, #eaf4ff 100%); border: 2px solid #9dcbfb; box-shadow: 0 14px 34px rgba(47,128,237,.12); overflow: hidden; }
.solution-path-toretama::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, var(--blue), #62a8f7); }
.solution-path-label { width: fit-content; margin: 0 0 11px; padding: 5px 12px; color: #697586; background: #eef2f6; border-radius: 999px; font-size: 12px; font-weight: 800; }
.solution-path-toretama .solution-path-label { color: var(--white); background: var(--blue); }
.solution-path h3 { margin-bottom: 24px; color: inherit; font-size: 22px; }
.solution-steps { display: grid; gap: 15px; padding: 0; margin: 0; list-style: none; }
.solution-steps li { position: relative; display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 12px; align-items: center; min-height: 54px; padding: 9px 13px; background: rgba(255,255,255,.72); border: 1px solid #e2e8f0; border-radius: 13px; }
.solution-steps li:not(:last-child)::after { content: "↓"; position: absolute; z-index: 2; left: 27px; bottom: -18px; color: #a3afbf; font-size: 14px; font-weight: 900; line-height: 1; transform: translateX(-50%); }
.solution-steps li > span { display: grid; place-items: center; width: 30px; height: 30px; color: var(--white); background: #aab4c1; border-radius: 50%; font-size: 12px; font-weight: 900; }
.solution-steps strong { color: inherit; font-size: 16px; line-height: 1.55; }
.solution-path-toretama .solution-steps li { background: rgba(255,255,255,.9); border-color: #cfe4fb; }
.solution-path-toretama .solution-steps li:not(:last-child)::after { color: var(--blue); }
.solution-path-toretama .solution-steps li > span { background: var(--blue); }
.solution-path-toretama .solution-step-featured { border-color: #8ec4fb; box-shadow: 0 6px 16px rgba(47,128,237,.08); }
.solution-step-featured strong > b { color: var(--blue); font-weight: 900; }
.solution-path-note { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid rgba(148,163,184,.28); font-size: 14px; line-height: 1.75; }
.solution-path-toretama .solution-path-note { color: var(--blue-dark); font-weight: 700; }
.solution-switch { display: grid; justify-items: center; gap: 6px; color: var(--blue); text-align: center; }
.solution-switch span { font-size: 12px; font-weight: 900; letter-spacing: .04em; writing-mode: vertical-rl; }
.solution-switch b { display: grid; place-items: center; width: 42px; height: 42px; color: var(--white); background: var(--blue); border-radius: 50%; box-shadow: 0 8px 20px rgba(47,128,237,.23); font-size: 22px; }
.solution-conclusion { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 34px 0 0; color: var(--blue-dark); font-size: 16px; font-weight: 800; text-align: center; }
.solution-conclusion span { display: grid; place-items: center; flex: 0 0 auto; width: 28px; height: 28px; color: var(--white); background: var(--green); border-radius: 50%; font-size: 14px; box-shadow: 0 5px 14px rgba(34,197,94,.2); }

.design-checks { background: var(--lp-navy-gradient); box-shadow: inset 0 1px 0 rgba(255,255,255,.05), inset 0 -1px 0 rgba(255,255,255,.05); }
.design-checks .section-kicker { color: #93c5fd; }
.design-checks .section-heading h2 { color: var(--white); }
.design-checks .section-heading > p:last-child { color: #dbeafe; }
.design-checks-mobile-break { display: none; }
.design-checks-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.design-check-card { min-width: 0; padding: 28px 26px 25px; background: var(--white); border: 1px solid rgba(255,255,255,.2); border-radius: 22px; box-shadow: 0 16px 36px rgba(2,12,27,.2); }
.design-check-card__icon { width: auto; height: auto; padding: 0; margin: 0 0 17px; background: none; border: 0; box-shadow: none; }
.design-check-card__icon img { display: block; width: 88px; height: auto; aspect-ratio: 1; object-fit: contain; }
.design-check-card h3 { margin: 0 0 10px; color: var(--blue-dark); font-size: 21px; line-height: 1.4; }
.design-check-card p { margin: 0; color: var(--text); font-size: 16px; line-height: 1.75; }
.mini-cta { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr); gap: 38px; align-items: center; margin-top: 46px; padding: 35px 38px; background: rgba(255,255,255,.98); border: 1px solid rgba(255,255,255,.22); border-radius: 28px; box-shadow: 0 20px 48px rgba(2,12,27,.22); }
.mini-cta__label { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 13px; padding: 6px 13px; color: #15803d; background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.13); border-radius: 999px; font-size: 14px; font-weight: 850; line-height: 1.4; }
.mini-cta h3 { margin: 0 0 11px; color: var(--blue-dark); font-size: clamp(24px, 2.35vw, 31px); line-height: 1.42; letter-spacing: .01em; }
.mini-cta__content > p { margin: 0; color: var(--text); font-size: 16px; line-height: 1.8; }
.mini-cta__action { display: flex; flex-direction: column; align-items: center; min-width: 0; }
.mini-cta__action .button-primary { width: min(100%, 420px); min-width: 0; }
.mini-cta__note { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 13px; margin: 14px 0 0; color: var(--blue-dark); font-size: 14px; font-weight: 750; line-height: 1.6; }
.mini-cta__note span { display: inline-flex; align-items: center; gap: 5px; }
.mini-cta__note span::before { content: "✓"; display: grid; place-items: center; flex: 0 0 auto; width: 18px; height: 18px; color: var(--white); background: var(--green-dark); border-radius: 50%; font-size: 11px; font-weight: 900; line-height: 1; }

.plans-section { background: linear-gradient(180deg, #f8fbff 0%, #fff 100%); }
.plans-section .section-heading { max-width: 920px; }
.plan-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; max-width: 1080px; margin-inline: auto; }
.plan-card { position: relative; display: flex; flex-direction: column; min-width: 0; height: 100%; padding: 37px 36px 34px; background: var(--white); border-radius: 26px; overflow: hidden; }
.plan-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 6px; }
.plan-card--premium { border: 1px solid rgba(15,58,122,.18); box-shadow: 0 20px 50px rgba(15,58,122,.12); }
.plan-card--premium::before { background: linear-gradient(90deg, var(--blue-dark), var(--blue)); }
.plan-card--simple { background: #fbfdff; border: 1px solid #cfe4fb; box-shadow: 0 15px 38px rgba(47,128,237,.085); }
.plan-card--simple::before { background: linear-gradient(90deg, #67adf5, #a3d2ff); }
.plan-card__label { width: fit-content; margin-bottom: 18px; padding: 7px 14px; border-radius: 999px; font-size: 14px; font-weight: 850; line-height: 1.4; }
.plan-card--premium .plan-card__label { color: var(--white); background: var(--blue-dark); }
.plan-card--simple .plan-card__label { color: var(--blue-dark); background: var(--blue-soft); border: 1px solid #cde4fb; }
.plan-card h3 { margin-bottom: 22px; color: var(--blue-dark); font-size: 28px; line-height: 1.4; }
.plan-card__price { margin-bottom: 22px; padding: 10px 22px; background: #f6faff; border: 1px solid #dbeafb; border-radius: 18px; }
.plan-card--simple .plan-card__price { background: #f1f8ff; }
.plan-card__price > div { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 15px 0; border-bottom: 1px solid #dce8f5; }
.plan-card__price > div:last-child { border-bottom: 0; }
.plan-card__price span { color: var(--text); font-size: 16px; font-weight: 800; }
.plan-card__price strong { color: var(--blue-dark); font-size: 34px; font-weight: 900; letter-spacing: -.03em; white-space: nowrap; }
.plan-card__price strong small { margin-left: 2px; font-size: 15px; }
.plan-card__recommend { margin-top: auto; padding: 20px 21px; background: #fbfdff; border: 1px solid rgba(15,58,122,.09); border-radius: 17px; }
.plan-card__recommend h4 { margin-bottom: 13px; color: var(--blue-dark); font-size: 19px; }
.plan-card__recommend ul { display: grid; gap: 9px; padding: 0; margin: 0; list-style: none; }
.plan-card__recommend li { position: relative; padding-left: 28px; color: var(--text); font-size: 16px; line-height: 1.65; }
.plan-card__recommend li::before { content: "✓"; position: absolute; top: .1em; left: 0; color: var(--green-dark); font-weight: 900; }
.comparison-wrap { max-width: 1040px; margin: 52px auto 0; border: 1px solid var(--border); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-sm); }
.comparison-scroll-hint { display: none; }
.comparison-table { width: 100%; border-collapse: collapse; table-layout: fixed; background: var(--white); }
.comparison-table caption { padding: 21px; color: var(--blue-dark); background: var(--blue-soft); border-bottom: 1px solid #d5e7fa; font-size: 23px; font-weight: 850; }
.comparison-table th, .comparison-table td { padding: 18px 20px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); text-align: center; vertical-align: middle; }
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table th:last-child, .comparison-table td:last-child { border-right: 0; }
.comparison-table thead th { color: var(--heading); background: #f7fbff; font-size: 16px; }
.comparison-table thead th:first-child, .comparison-table tbody th { width: 25%; }
.comparison-table tbody th { color: var(--heading); background: var(--soft); font-size: 16px; text-align: left; }
.comparison-table td { color: var(--text); font-size: 16px; line-height: 1.7; }
.comparison-table .premium-col { background: #f4f9ff; }
.comparison-table thead .premium-col { color: var(--blue-dark); background: #e1efff; box-shadow: inset 0 3px 0 var(--blue); }
.comparison-table strong { color: var(--blue-dark); font-size: 18px; }
.plan-advice { max-width: 940px; margin: 38px auto 0; padding: 31px 34px; text-align: center; background: linear-gradient(135deg, #eef7ff, #fff); border: 1px solid #cee3f9; border-radius: 24px; box-shadow: 0 12px 30px rgba(15,58,122,.065); }
.plan-advice__copy { display: flex; align-items: flex-start; justify-content: center; gap: 13px; }
.plan-advice__copy > span { display: grid; place-items: center; flex: 0 0 auto; width: 30px; height: 30px; color: var(--white); background: var(--blue); border-radius: 50%; font-weight: 900; }
.plan-advice__copy p { margin: 0; color: var(--text); font-size: 16px; line-height: 1.8; }
.plan-advice__copy strong { color: var(--blue-dark); font-size: 18px; }
.plan-advice__action { display: flex; flex-direction: column; align-items: center; margin-top: 24px; }
.plan-advice__action .button-primary { width: min(100%, 390px); min-width: 0; min-height: 62px; padding: 15px 24px; font-size: 16px; }
.plan-advice__action .cta-note { max-width: 100%; white-space: normal; text-align: center; }

.plan-detail { position: relative; overflow: hidden; }
.detail-premium { background: linear-gradient(180deg, #f8fbff 0%, var(--blue-soft) 100%); }
.detail-economy { background: linear-gradient(180deg, #ffffff 0%, #edf5fd 100%); }
.plan-detail-stack { display: grid; gap: 40px; }
.plan-detail-summary { max-width: 960px; margin-inline: auto; padding: 34px 36px 32px; background: rgba(255,255,255,.96); border: 1px solid rgba(15,58,122,.09); border-radius: 26px; box-shadow: 0 14px 34px rgba(15,58,122,.08); text-align: center; }
.plan-detail-summary h2 { margin-bottom: 15px; color: var(--blue-dark); font-size: clamp(30px, 4vw, 38px); line-height: 1.4; }
.plan-detail-lead { max-width: 780px; margin: 0 auto 24px; color: var(--text); font-size: 17px; font-weight: 500; line-height: 1.85; }
.plan-feature-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; padding: 0; margin: 0; list-style: none; text-align: left; }
.plan-feature-points li { position: relative; min-width: 0; padding: 16px 17px 16px 44px; color: var(--heading); background: var(--blue-pale); border: 1px solid rgba(47,128,237,.09); border-radius: 16px; font-size: 16px; font-weight: 750; line-height: 1.7; }
.plan-feature-points li::before { content: "✓"; position: absolute; top: 16px; left: 17px; color: var(--white); background: var(--blue); display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; font-size: 12px; font-weight: 900; line-height: 1; }
.detail-economy .plan-feature-points li { background: #f5faff; }
.detail-economy .plan-feature-points li::before { background: #4f92d7; }
.plan-works { min-width: 0; }
.plan-works .works-group-heading { margin-bottom: 30px; }
.plan-works .works-group-heading p { max-width: 680px; margin-inline: auto; }

.budget-note { position: relative; overflow: hidden; background: var(--lp-navy-gradient); box-shadow: inset 0 1px 0 rgba(255,255,255,.05), inset 0 -1px 0 rgba(255,255,255,.05); }
.budget-note-grid { position: relative; display: grid; grid-template-columns: 150px minmax(0, 760px); justify-content: center; gap: 42px; max-width: 1080px; padding: 44px; background: rgba(255,255,255,.98); border: 1px solid rgba(255,255,255,.2); border-radius: 28px; box-shadow: 0 22px 54px rgba(2,12,27,.24); }
.budget-note-icon { display: grid; place-items: center; width: 130px; height: 130px; margin-top: 45px; color: var(--white); background: var(--blue); border: 12px solid rgba(255,255,255,.72); border-radius: 50%; box-shadow: 0 16px 35px rgba(15,58,122,.15); font-size: 58px; font-weight: 900; }
.budget-note h2 { margin-bottom: 25px; font-size: 34px; }
.question-quote { padding: 17px 21px; color: var(--blue-dark); background: var(--blue-soft); border-left: 4px solid var(--blue); border-radius: 0 12px 12px 0; font-weight: 700; }
.answer-lead { color: var(--blue); font-size: 23px; font-weight: 900; }

.voice { background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%); overflow: hidden; }
.voice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 42px; }
.voice-card { position: relative; display: flex; flex-direction: column; min-width: 0; padding: 30px 28px 27px; background: var(--white); border: 1px solid rgba(15,58,122,.1); border-radius: 24px; box-shadow: 0 16px 38px rgba(15,58,122,.09); }
.voice-card__quote { height: 48px; margin-bottom: 4px; color: rgba(21,87,168,.24); font-family: Georgia, "Times New Roman", serif; font-size: 76px; font-weight: 900; line-height: .82; }
.voice-card h3 { margin-bottom: 15px; color: var(--heading); font-size: 18px; line-height: 1.65; }
.voice-card > p:not(.voice-card__name) { flex: 1; margin: 0; color: var(--text); font-size: 16px; line-height: 1.85; }
.voice-card__name { margin: 20px 0 0; padding-top: 14px; color: var(--blue-dark); border-top: 1px solid rgba(15,58,122,.12); font-size: 15px; font-weight: 850; line-height: 1.6; }
.voice-note { max-width: 760px; margin: 34px auto 0; color: var(--text); font-size: 16px; font-weight: 500; line-height: 1.85; text-align: center; }
.voice-cta { margin-top: 24px; text-align: center; }
.voice-cta .button-primary { width: min(100%, 400px); min-width: 0; min-height: 62px; }

.works-group-heading { max-width: 780px; margin: 0 auto 35px; text-align: center; }
.works-group-heading > span { color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .2em; }
.works-group-heading h3 { margin: 8px 0 14px; font-size: 28px; }
.works-group-heading p { color: var(--text); font-size: 16px; line-height: 1.75; }
.works-group-economy .works-group-heading > span { color: #567ca9; }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.work-card { display: flex; flex-direction: column; min-width: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.work-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.work-card picture { display: block; aspect-ratio: 16 / 10; background: var(--blue-soft); overflow: hidden; }
.work-card picture img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.work-card:hover picture img { transform: scale(1.025); }
.work-body { display: flex; flex: 1; flex-direction: column; padding: 23px 23px 21px; }
.work-type { width: fit-content; margin-bottom: 9px; padding: 3px 9px; color: var(--blue); background: var(--blue-soft); border-radius: 999px; font-size: 12px; font-weight: 800; }
.works-group-economy .work-type { color: #355d8b; background: #eef4fa; }
.work-body h4 { margin-bottom: 9px; font-size: 21px; }
.work-body > p:not(.work-type) { flex: 1; margin-bottom: 20px; color: var(--text); font-size: 16px; line-height: 1.75; }
.work-body > a { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; color: var(--blue-dark); border-top: 1px solid var(--border); font-size: 15px; font-weight: 800; }
.work-body > a span { font-size: 18px; }

.flow { background: linear-gradient(180deg, #dceeff 0%, #cfe5fa 100%); }
.flow-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px 28px; margin-top: 36px; }
.flow-card { position: relative; min-width: 0; min-height: 228px; padding: 29px 25px 27px; background: var(--white); border: 1px solid rgba(15,58,122,.09); border-radius: 24px; box-shadow: 0 12px 30px rgba(15,58,122,.07); }
.flow-card::after { content: ""; position: absolute; z-index: 2; top: 42px; right: -29px; display: none; width: 29px; height: 2px; background: linear-gradient(90deg, rgba(47,128,237,.14), rgba(47,128,237,.5)); }
.flow-card:not(:nth-child(3n))::after { display: block; }
.flow-card__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 30px; margin-bottom: 16px; }
.flow-card__step { display: inline-flex; align-items: center; justify-content: center; padding: 7px 13px; color: var(--blue-dark); background: rgba(47,128,237,.1); border: 1px solid rgba(47,128,237,.1); border-radius: 999px; font-size: 14px; font-weight: 900; letter-spacing: .08em; line-height: 1; }
.flow-card h3 { margin: 0 0 12px; color: var(--blue-dark); font-size: 21px; line-height: 1.45; }
.flow-card p { margin: 0; color: var(--text); font-size: 16px; line-height: 1.8; }
.flow-card--highlight { background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%); border-color: rgba(34,197,94,.38); box-shadow: 0 16px 36px rgba(34,197,94,.12); }
.flow-card--highlight .flow-card__step { color: #15733a; background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.16); }
.flow-card__badge { display: inline-flex; align-items: center; justify-content: center; gap: 5px; padding: 6px 11px; color: #15733a; background: rgba(34,197,94,.12); border-radius: 999px; font-size: 13px; font-weight: 900; line-height: 1; white-space: nowrap; }
.flow-card__badge > span { display: grid; place-items: center; width: 17px; height: 17px; color: var(--white); background: var(--green-dark); border-radius: 50%; font-size: 10px; }
.flow-cta { max-width: 850px; margin: 40px auto 0; padding: 29px 28px 27px; text-align: center; background: rgba(255,255,255,.9); border: 1px solid rgba(47,128,237,.12); border-radius: 24px; box-shadow: 0 14px 34px rgba(15,58,122,.08); }
.flow-cta__lead { margin: 0 0 18px; color: var(--blue-dark); font-size: 21px; font-weight: 800; line-height: 1.5; }
.flow-cta .button-primary { width: min(100%, 420px); min-width: 0; }
.flow-cta .cta-note { max-width: 100%; white-space: normal; }

.faq-container { max-width: 920px; }
.faq-list { display: grid; gap: 14px; }
.faq-list details { background: var(--white); border: 1px solid var(--border); border-radius: 18px; box-shadow: 0 6px 22px rgba(15,58,122,.05); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-list details[open] { border-color: rgba(47,128,237,.28); box-shadow: 0 10px 28px rgba(15,58,122,.08); }
.faq-list summary { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; min-height: 80px; padding: 21px 23px; color: var(--blue-dark); font-size: 18px; font-weight: 850; line-height: 1.6; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:focus-visible { outline: 3px solid rgba(47,128,237,.3); outline-offset: -3px; }
.faq-q, .faq-answer > span { display: grid; place-items: center; width: 40px; height: 40px; color: var(--white); background: var(--blue); border-radius: 12px; font-family: Arial, sans-serif; font-size: 14px; font-weight: 900; }
.faq-list summary i { position: relative; width: 30px; height: 30px; background: var(--blue-soft); border-radius: 50%; transition: background .2s ease; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; top: 14px; left: 7px; width: 16px; height: 2px; background: var(--blue); border-radius: 2px; transition: transform .2s ease; }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details[open] summary i { background: #dcecff; }
.faq-list details[open] summary { color: var(--blue-dark); background: var(--blue-pale); }
.faq-list details[open] .faq-answer { animation: faq-answer-reveal .22s ease-out; }
.faq-answer { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 16px; padding: 23px 24px 26px; color: var(--text); border-top: 1px solid var(--border); font-size: 16px; line-height: 1.8; }
.faq-answer > span { color: var(--blue); background: var(--blue-soft); }
.faq-answer p { margin: 2px 0 0; }
.faq-answer__body { min-width: 0; }
.faq-answer__body p + p { margin-top: 12px; }
.faq-cta { margin: 38px auto 0; padding: 29px 26px 27px; text-align: center; background: linear-gradient(135deg, rgba(234,244,255,.9), rgba(255,255,255,.98)); border: 1px solid rgba(47,128,237,.14); border-radius: 24px; box-shadow: 0 14px 34px rgba(15,58,122,.08); }
.faq-cta__lead { margin: 0 0 19px; color: var(--blue-dark); font-size: 20px; font-weight: 800; line-height: 1.65; }
.faq-cta .button-primary { width: min(100%, 400px); min-width: 0; min-height: 62px; }
.faq-cta .cta-note { max-width: 100%; white-space: normal; }

@keyframes faq-answer-reveal {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .faq-list details[open] .faq-answer { animation: none; }
}

.creator { background: linear-gradient(180deg, #fff 0%, #f8fbff 100%); }
.creator-box { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.25fr); gap: 42px; align-items: center; margin-top: 38px; padding: 38px; background: var(--white); border: 1px solid rgba(15,58,122,.08); border-radius: 28px; box-shadow: 0 18px 42px rgba(15,58,122,.08); }
.creator-box__logo { display: flex; align-items: center; justify-content: center; min-width: 0; padding: 16px 4px; }
.creator-box__logo img { display: block; width: min(100%, 400px); height: auto; }
.creator-box__content { min-width: 0; }
.creator-box__label { display: inline-flex; align-items: center; justify-content: center; margin: 0 0 9px; padding: 5px 11px; color: var(--blue); background: var(--blue-soft); border-radius: 999px; font-size: 13px; font-weight: 900; letter-spacing: .08em; }
.creator-box__company { margin: 0 0 16px; color: var(--blue-dark); font-size: 22px; font-weight: 850; line-height: 1.5; }
.creator-box__text p { margin: 0 0 13px; color: var(--text); font-size: 16px; line-height: 1.85; }
.creator-box__text p:last-child { margin-bottom: 0; }
.creator-box__points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.creator-box__points li { display: flex; align-items: flex-start; gap: 9px; min-width: 0; padding: 13px 14px; color: var(--blue-dark); background: #f8fbff; border: 1px solid rgba(47,128,237,.11); border-radius: 14px; font-size: 15px; font-weight: 750; line-height: 1.6; }
.creator-box__points li::before { content: "✓"; display: grid; flex: 0 0 auto; place-items: center; width: 20px; height: 20px; margin-top: 2px; color: var(--white); background: linear-gradient(135deg, #35cc8b, #169b57); border-radius: 50%; font-size: 12px; font-weight: 900; line-height: 1; }
.creator-cta { max-width: 850px; margin: 38px auto 0; padding: 28px 26px 26px; text-align: center; background: rgba(255,255,255,.92); border: 1px solid rgba(47,128,237,.12); border-radius: 24px; box-shadow: 0 14px 34px rgba(15,58,122,.07); }
.creator-cta__lead { margin: 0 0 18px; color: var(--blue-dark); font-size: 20px; font-weight: 800; line-height: 1.6; }
.creator-cta .button-primary { width: min(100%, 400px); min-width: 0; min-height: 62px; }
.creator-cta .cta-note { max-width: 100%; white-space: normal; }

.contact-section {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #eaf4ff;
}
.contact-top {
  position: relative;
  padding: 72px 0 230px;
  background: var(--lp-navy-bg);
}
.contact-top .contact-container { position: relative; z-index: 1; }
.contact-bottom { position: relative; z-index: 2; padding: 0 0 92px; background: #eaf4ff; }
.contact-bottom::before { content: ""; position: absolute; inset: 0 0 auto; height: 84px; background: var(--lp-navy-bg); pointer-events: none; }
.contact-bottom .contact-container { position: relative; z-index: 1; }
.contact-container { max-width: 1080px; }
.contact-heading { max-width: 880px; margin-bottom: 0; }
.contact-section .section-kicker { margin-bottom: 18px; color: #9ccbff; font-size: 11.5px; letter-spacing: .28em; }
.contact-heading h2 { margin-bottom: 17px; color: var(--white); font-size: clamp(32px, 3.5vw, 44px); line-height: 1.45; letter-spacing: .02em; text-shadow: none; }
.contact-heading > p:last-child { color: #eef6ff; font-size: 16px; line-height: 1.9; letter-spacing: .02em; }
.contact-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin: 28px 0 0; padding: 0; list-style: none; }
.contact-points li { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; color: var(--white); background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; box-shadow: none; font-size: 14px; font-weight: 800; line-height: 1.5; }
.contact-points li::before { content: "✓"; color: #8ef0b1; font-size: 14px; font-weight: 900; line-height: 1; }
.contact-lead-note { margin: 20px 0 0; color: var(--white); text-align: center; font-size: 16px; font-weight: 800; line-height: 1.8; letter-spacing: .01em; }
.contact-card { position: relative; z-index: 2; max-width: 920px; margin: -170px auto 0; padding: 0 34px 36px; background: var(--white); border: 1px solid rgba(15,58,122,.08); border-radius: 28px 28px 12px 12px; box-shadow: 0 24px 65px rgba(15,58,122,.18); overflow: hidden; }
.form-heading { padding: 36px 0 27px; text-align: center; border-bottom: 1px solid var(--border); }
.form-heading > span { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 10px; padding: 5px 12px; color: var(--blue-dark); background: var(--blue-soft); border-radius: 999px; font-size: 13px; font-weight: 850; }
.form-heading h3 { margin-bottom: 10px; color: var(--blue-dark); font-size: 28px; }
.form-heading p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.contact-form { padding-top: 31px; }
.form-hidden { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.form-wide { grid-column: 1 / -1; }
.form-field { min-width: 0; }
.form-field label { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-bottom: 8px; color: var(--blue-dark); font-size: 16px; font-weight: 850; }
.form-field input[type="text"], .form-field input[type="email"], .form-field input[type="url"], .form-field select, .form-field textarea {
  width: 100%;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(15,58,122,.18);
  border-radius: 14px;
  font-size: 16px;
  line-height: 1.6;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-field input[type="text"], .form-field input[type="email"], .form-field input[type="url"], .form-field select { min-height: 56px; padding: 13px 15px; }
.form-field select { cursor: pointer; }
.form-field textarea { display: block; min-height: 110px; padding: 13px 15px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47,128,237,.12); }
.form-field ::placeholder { color: #7c8da3; opacity: 1; }
.required, .optional { display: inline-flex; align-items: center; justify-content: center; padding: 3px 8px; border-radius: 999px; font-size: 12px; font-weight: 850; line-height: 1.4; }
.required { color: #15733a; background: rgba(34,197,94,.12); }
.optional { color: var(--muted); background: rgba(100,116,139,.12); }
.form-submit { margin-top: 32px; text-align: center; }
.button-submit { width: min(100%, 420px); min-width: 0; }
.form-note { margin: 14px 0 0; color: var(--text); font-size: 15px; line-height: 1.75; }

.section-heading > p:last-child,
.worry-card > p,
.solution-bridge-heading > p:last-child,
.solution-path-note,
.design-check-card p,
.mini-cta__content > p,
.plan-advice__copy p,
.plan-detail-lead,
.works-group-heading p,
.work-body > p:not(.work-type),
.flow-card p,
.faq-answer,
.creator-box__text p,
.form-heading p,
.form-note {
  font-weight: 500;
}

.thanks-page { min-height: 100vh; background: radial-gradient(circle at 14% 10%, rgba(47,128,237,.18), transparent 30%), radial-gradient(circle at 88% 12%, rgba(34,197,94,.11), transparent 24%), linear-gradient(145deg, #eef7ff 0%, #fff 48%, #eaf4ff 100%); }
.thanks-main { display: grid; min-height: 100vh; place-items: center; padding: 48px 20px; }
.thanks-card { width: min(100%, 720px); padding: 44px 48px 48px; text-align: center; background: rgba(255,255,255,.96); border: 1px solid rgba(47,128,237,.12); border-radius: 30px; box-shadow: 0 24px 70px rgba(15,58,122,.14); }
.thanks-logo { display: inline-block; width: min(100%, 240px); margin-bottom: 28px; }
.thanks-logo img { display: block; width: 100%; height: auto; }
.thanks-icon { display: grid; width: 64px; height: 64px; margin: 0 auto 18px; place-items: center; color: var(--white); background: linear-gradient(135deg, #34d399, #16a34a); border-radius: 50%; box-shadow: 0 14px 30px rgba(22,163,74,.25); font-size: 30px; font-weight: 900; }
.thanks-kicker { margin: 0 0 10px; color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: .14em; }
.thanks-card h1 { margin: 0 0 22px; color: var(--heading); font-size: clamp(28px, 5vw, 40px); line-height: 1.4; }
.thanks-card__message { margin: 0; color: var(--text); font-size: 17px; line-height: 1.9; }
.thanks-card__assurance { margin: 22px 0 28px; padding: 14px 18px; color: var(--blue-dark); background: var(--blue-soft); border-radius: 14px; font-size: 15px; font-weight: 750; line-height: 1.7; }
.thanks-button { width: min(100%, 360px); min-width: 0; }

.site-footer { padding: 30px 20px; color: var(--white); background: var(--lp-navy-bg); border-top: 1px solid rgba(255,255,255,.12); text-align: center; font-size: 14px; line-height: 1.8; }
.footer-simple p { margin: 4px 0; color: inherit; }

.page-top { position: fixed; right: 22px; bottom: 22px; z-index: 1000; display: grid; place-items: center; width: 46px; height: 46px; color: var(--white); background: rgba(47,155,196,.88); border: 0; border-radius: 999px; box-shadow: 0 8px 22px rgba(47,155,196,.24); font-size: 22px; font-weight: 800; line-height: 1; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .25s ease, visibility .25s ease, transform .25s ease, background .25s ease, box-shadow .25s ease; }
.page-top.is-show { opacity: 1; visibility: visible; transform: translateY(0); }
.page-top:hover { background: rgba(47,155,196,1); box-shadow: 0 10px 26px rgba(47,155,196,.28); }
.page-top:focus-visible { outline: 3px solid rgba(47,155,196,.28); outline-offset: 3px; }
.mobile-fixed-cta { display: none; }

@media (max-width: 767px) {
  body { padding-bottom: calc(82px + env(safe-area-inset-bottom)); }
  .page-top { display: none !important; }
  .mobile-fixed-cta { position: fixed; right: 16px; bottom: calc(14px + env(safe-area-inset-bottom)); left: 16px; z-index: 1100; display: flex; align-items: center; justify-content: center; min-height: 52px; padding: 14px 18px; color: var(--white); background: linear-gradient(135deg, #2f9bc4, #6ec6d9); border-radius: 999px; box-shadow: 0 10px 24px rgba(47,155,196,.28); font-size: 15px; font-weight: 800; line-height: 1.4; text-align: center; text-decoration: none; }
  .mobile-fixed-cta:hover,
  .mobile-fixed-cta:focus { color: var(--white); text-decoration: none; }
  .mobile-fixed-cta:focus-visible { outline: 3px solid rgba(47,155,196,.3); outline-offset: 3px; }
}

@media (max-width: 1080px) {
  .global-nav { gap: 20px; }
  .hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr); gap: 20px; }
  .hero h1 { font-size: 42px; }
  .worry-grid { grid-template-columns: repeat(2, 1fr); }
  .worry-card { min-height: 0; }
}

@media (max-width: 920px) {
  :root { --header-height: 68px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .menu-toggle { display: inline-flex; align-items: center; gap: 8px; padding: 7px 10px; color: var(--blue-dark); background: transparent; border: 0; border-radius: 8px; cursor: pointer; }
  .menu-toggle-lines { display: grid; gap: 4px; width: 22px; }
  .menu-toggle-lines i { display: block; width: 100%; height: 2px; background: currentColor; border-radius: 1px; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle-label { font-size: 10px; font-weight: 800; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .global-nav { position: fixed; z-index: 999; top: var(--header-height); right: 0; left: 0; display: grid; align-content: start; gap: 0; max-height: calc(100vh - var(--header-height)); padding: 14px 20px 24px; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--border); box-shadow: 0 18px 35px rgba(15,58,122,.13); overflow-y: auto; visibility: hidden; opacity: 0; transform: translateY(-8px); transition: .2s ease; }
  .global-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .global-nav > a:not(.nav-cta) { padding: 13px 10px; border-bottom: 1px solid var(--border); }
  .global-nav > a:not(.nav-cta)::after { display: none; }
  .global-nav .nav-cta { justify-self: center; width: min(100%, 360px); margin: 12px auto 0; padding: 12px 18px; text-align: center; border-radius: 999px; }
  .hero { display: block; min-height: 0; padding: 58px 0 0; background: linear-gradient(180deg, #fff 0%, var(--blue-soft) 100%); }
  .hero-grid { display: grid; grid-template-columns: 1fr; max-width: 720px; }
  .hero-copy { max-width: none; padding: 0; text-align: center; }
  .eyebrow { margin-inline: auto; }
  .cta-unit-left { margin-inline: auto; }
  .hero-visual { display: block; width: min(100%, 620px); margin: 24px auto 0; padding: 0; }
  .hero-visual picture { aspect-ratio: 16 / 9; border-radius: 22px; box-shadow: 0 18px 42px rgba(15,58,122,.14); }
  .hero-visual picture img { object-position: 64% center; }
  .hero-assurance { width: 100%; max-width: none; margin: 30px 0 38px; border-radius: 20px; }
  .solution-bridge-card { padding: 48px 40px 40px; }
  .solution-compare { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .solution-switch { display: flex; align-items: center; justify-content: center; margin-block: 16px; }
  .solution-switch span { writing-mode: horizontal-tb; }
  .solution-switch b { width: 38px; height: 38px; font-size: 0; }
  .solution-switch b::after { content: "↓"; font-size: 19px; }
  .design-checks-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-cta { grid-template-columns: 1fr; gap: 26px; }
  .mini-cta__action { align-items: flex-start; }
  .plan-cards { grid-template-columns: 1fr; max-width: 680px; }
  .plan-detail-stack { gap: 34px; }
  .plan-detail-summary { max-width: 760px; padding: 30px 28px; }
  .plan-feature-points { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
  .budget-note-grid { grid-template-columns: 110px minmax(0, 1fr); gap: 28px; padding: 36px; }
  .budget-note-icon { width: 100px; height: 100px; border-width: 9px; font-size: 46px; }
  .voice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow-card:not(:nth-child(3n))::after { display: none; }
  .flow-card:nth-child(odd):not(:last-child)::after { display: block; }
  .works-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .creator-box { grid-template-columns: 1fr; gap: 25px; max-width: 760px; margin-inline: auto; padding: 32px; }
  .creator-box__logo { padding-block: 8px; }
  .creator-box__logo img { width: min(100%, 400px); }
  .creator-box__content { width: 100%; max-width: 680px; margin-inline: auto; }
}

@media (max-width: 680px) {
  :root { --radius: 16px; --radius-lg: 22px; }
  body { font-size: 16px; line-height: 1.85; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-mark { width: 34px; height: 34px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 8px; }
  .menu-toggle-label { display: none; }
  .hero { padding-top: 34px; }
  .hero h1 { margin-bottom: 18px; font-size: clamp(30px, 8.6vw, 39px); line-height: 1.4; }
  .desktop-break { display: none; }
  .eyebrow { margin-bottom: 16px; font-size: 11px; }
  .eyebrow span { font-size: 10px; }
  .hero-lead { font-size: 13.5px; line-height: 1.76; text-align: left; }
  .hero-lead p { margin-bottom: 10px; }
  .hero-invitation { margin: 19px 0 18px; font-size: 15px; line-height: 1.7; }
  .button { width: 100%; min-height: 58px; padding: 14px 17px; border-radius: 12px; font-size: 15px; }
  .cta-unit-left { width: 100%; }
  .hero-visual { margin-top: 21px; padding: 0; }
  .hero-visual::before { inset: 16px -7px -7px 10px; border-radius: 22px; }
  .hero-visual picture { aspect-ratio: 3 / 2; border-radius: 20px; }
  .hero-visual picture img { object-position: 68% center; }
  .hero-assurance { grid-template-columns: 1fr; margin: 26px 0 28px; border-radius: 16px; }
  .hero-assurance > div { justify-content: flex-start; min-height: 77px; padding: 13px 24px; }
  .hero-assurance > div + div { border-top: 1px solid var(--border); border-left: 0; }
  .section { padding: 76px 0; }
  .section-heading { margin-bottom: 37px; }
  .section-heading h2 { margin-bottom: 14px; font-size: 28px; line-height: 1.42; }
  .section-heading > p:last-child { color: var(--text); font-size: 16px; line-height: 1.8; }
  .mobile-break { display: block; }
  .worry-grid { grid-template-columns: 1fr; gap: 14px; }
  .worry-card { min-height: 0; padding: 23px 22px 21px; }
  .worry-card > p { max-width: none; font-size: 16px; line-height: 1.75; }
  .worry-card-icon { margin-bottom: 12px; }
  .worry-card-icon img { width: 70px; }
  .solution-bridge-section { padding-block: 68px; }
  .solution-bridge-section .container { width: min(calc(100% - 20px), var(--container)); }
  .solution-bridge-card { padding: 37px 14px 30px; border-radius: 21px; }
  .solution-bridge-heading { margin-bottom: 30px; padding-inline: 7px; }
  .solution-bridge-heading h2 { margin-bottom: 13px; font-size: 28px; font-weight: 850; line-height: 1.42; }
  .solution-mobile-break { display: block; }
  .solution-bridge-heading > p:last-child { font-size: 16px; line-height: 1.8; }
  .solution-path { padding: 25px 18px 22px; border-radius: 17px; }
  .solution-path h3 { margin-bottom: 19px; font-size: 20px; }
  .solution-steps { gap: 13px; }
  .solution-steps li { grid-template-columns: 32px minmax(0, 1fr); gap: 10px; min-height: 52px; padding: 8px 11px; }
  .solution-steps li:not(:last-child)::after { left: 25px; bottom: -16px; }
  .solution-steps strong { font-size: 16px; }
  .solution-path-note { margin-top: 18px; padding-top: 15px; font-size: 14px; }
  .solution-switch { margin-block: 14px; }
  .solution-conclusion { align-items: flex-start; margin-top: 27px; padding-inline: 5px; font-size: 16px; line-height: 1.75; text-align: left; }
  .design-checks-grid { grid-template-columns: 1fr; gap: 16px; }
  .design-checks-mobile-break { display: block; }
  .design-check-card { padding: 23px 21px 21px; border-radius: 19px; }
  .design-check-card__icon { margin-bottom: 14px; }
  .design-check-card__icon img { width: 76px; }
  .design-check-card h3 { margin-bottom: 8px; font-size: 20px; }
  .design-check-card p { font-size: 16px; line-height: 1.75; }
  .mini-cta { gap: 22px; margin-top: 32px; padding: 27px 21px 25px; border-radius: 23px; }
  .mini-cta__label { margin-bottom: 11px; font-size: 14px; }
  .mini-cta h3 { margin-bottom: 10px; font-size: 24px; line-height: 1.45; }
  .mini-cta__content > p { font-size: 16px; line-height: 1.75; }
  .mini-cta__action { align-items: stretch; }
  .mini-cta__action .button-primary { width: 100%; max-width: none; }
  .mini-cta__note { display: grid; justify-content: start; gap: 6px; margin-top: 13px; font-size: 14px; }
  .center-copy { margin-top: 27px; text-align: left; }
  .plan-cards { gap: 18px; }
  .plan-card { padding: 30px 22px 26px; border-radius: 22px; }
  .plan-card__label { margin-bottom: 15px; font-size: 13px; }
  .plan-card h3 { margin-bottom: 18px; font-size: 24px; }
  .plan-card__price { margin-bottom: 18px; padding: 7px 16px; border-radius: 15px; }
  .plan-card__price > div { gap: 12px; padding: 12px 0; }
  .plan-card__price span { font-size: 14px; }
  .plan-card__price strong { font-size: 29px; }
  .plan-card__recommend { padding: 16px; }
  .plan-card__recommend h4 { font-size: 17px; }
  .comparison-scroll-hint { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 42px 0 10px; color: var(--blue-dark); font-size: 14px; font-weight: 800; }
  .comparison-wrap { margin-top: 0; border-radius: 12px; overflow-x: auto; scrollbar-color: var(--blue) var(--blue-soft); scrollbar-width: thin; }
  .comparison-table { min-width: 720px; }
  .comparison-table th, .comparison-table td { padding: 15px 14px; }
  .comparison-table caption { text-align: left; }
  .comparison-table thead th:not(:first-child) { text-align: left; }
  .comparison-table thead th:first-child,
  .comparison-table tbody th { position: static; z-index: auto; left: auto; width: 160px; min-width: 160px; box-shadow: none; }
  .plan-advice { margin-top: 28px; padding: 24px 19px; text-align: left; border-radius: 19px; }
  .plan-advice__copy { justify-content: flex-start; gap: 11px; }
  .plan-advice__copy > span { width: 28px; height: 28px; }
  .plan-advice__copy p { font-size: 16px; line-height: 1.75; }
  .plan-advice__copy strong { font-size: 17px; }
  .plan-advice__action { align-items: stretch; margin-top: 21px; }
  .plan-advice__action .button-primary { width: 100%; max-width: none; }
  .plan-advice__action .cta-note { justify-content: flex-start; font-size: 14px; text-align: left; }
  .plan-detail-summary { padding: 26px 20px 24px; border-radius: 20px; text-align: left; }
  .plan-detail-summary h2 { font-size: 28px; }
  .plan-detail-lead { margin-bottom: 20px; font-size: 16px; line-height: 1.8; }
  .plan-feature-points { gap: 10px; }
  .plan-feature-points li { padding: 14px 14px 14px 42px; font-size: 15px; line-height: 1.7; }
  .plan-feature-points li::before { top: 15px; left: 15px; }
  .budget-note-grid { grid-template-columns: 1fr; gap: 10px; padding: 24px 20px; border-radius: 22px; }
  .budget-note-icon { width: 76px; height: 76px; margin: 0; border-width: 6px; font-size: 34px; }
  .budget-note h2 { font-size: 28px; }
  .question-quote { padding: 15px 17px; }
  .answer-lead { font-size: 20px; }
  .voice-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 31px; }
  .voice-card { padding: 24px 21px 23px; border-radius: 20px; }
  .voice-card__quote { height: 42px; margin-bottom: 4px; font-size: 66px; line-height: .82; }
  .voice-card h3 { margin-bottom: 12px; font-size: 18px; line-height: 1.6; }
  .voice-card > p:not(.voice-card__name) { font-size: 16px; line-height: 1.8; }
  .voice-note { margin-top: 28px; text-align: left; }
  .voice-cta .button-primary { width: 100%; }
  .works-group-heading { text-align: left; }
  .works-group-heading h3 { font-size: 24px; }
  .works-grid { grid-template-columns: 1fr; gap: 17px; }
  .work-body { padding: 20px; }
  .faq-list { gap: 11px; }
  .faq-list details { border-radius: 16px; }
  .faq-list summary { gap: 11px; min-height: 74px; padding: 17px 15px; font-size: 17px; line-height: 1.6; }
  .faq-q, .faq-answer > span { width: 34px; height: 34px; border-radius: 10px; font-size: 13px; }
  .faq-list summary i { width: 28px; height: 28px; }
  .faq-list summary i::before, .faq-list summary i::after { top: 13px; left: 7px; width: 14px; }
  .faq-answer { gap: 11px; padding: 19px 15px 22px; font-size: 16px; line-height: 1.8; }
  .faq-answer__body p + p { margin-top: 10px; }
  .faq-cta { margin-top: 30px; padding: 25px 18px 23px; border-radius: 20px; }
  .faq-cta__lead { margin-bottom: 17px; font-size: 19px; line-height: 1.65; }
  .faq-cta .button-primary { width: 100%; }
  .faq-cta .cta-note { justify-content: flex-start; text-align: left; }
  .creator-box { gap: 22px; margin-top: 30px; padding: 24px 20px; border-radius: 22px; }
  .creator-box__logo { padding: 5px 0 8px; }
  .creator-box__logo img { width: min(100%, 280px); }
  .creator-box__label { font-size: 12px; }
  .creator-box__company { margin-bottom: 14px; font-size: 19px; }
  .creator-box__text p { margin-bottom: 12px; font-size: 16px; line-height: 1.8; }
  .creator-box__points { grid-template-columns: 1fr; gap: 9px; margin-top: 21px; }
  .creator-box__points li { padding: 12px 13px; font-size: 16px; }
  .creator-cta { margin-top: 30px; padding: 25px 18px 23px; border-radius: 20px; }
  .creator-cta__lead { margin-bottom: 17px; font-size: 19px; }
  .creator-cta .button-primary { width: 100%; }
  .creator-cta .cta-note { justify-content: flex-start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Image-led first view */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero.hero-image-only {
  display: block;
  min-height: 0;
  padding: 0 0 30px;
  background: #fff;
}

.hero.hero-image-only::after { display: none; }

.hero-image-container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero-main-visual,
.hero-main-visual picture,
.hero-main-visual img {
  display: block;
  width: 100%;
}

.hero-main-visual img {
  height: auto;
  max-width: none;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-cta-area {
  width: min(calc(100% - 40px), 520px);
  margin: 24px auto 0;
  text-align: center;
}

.hero-cta-area .button { width: min(100%, 400px); }
.hero-cta-note { margin: 9px 0 0; color: var(--blue-dark); font-size: 14px; font-weight: 700; letter-spacing: .06em; }
.hero-cta-note span { color: var(--green-dark); }

@media (max-width: 768px) {
  .hero.hero-image-only { padding: 0 0 24px; }

  .hero-image-container {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .hero-main-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-cta-area {
    width: min(calc(100% - 32px), 420px);
    margin: 18px auto 0;
  }
  .hero-cta-area .button { width: 100%; }
  .hero-cta-note { margin-top: 8px; font-size: 14px; }
}

/* Premium CTA */
.button-primary {
  position: relative;
  isolation: isolate;
  min-width: 420px;
  min-height: 68px;
  padding: 18px 30px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,.24) 0%, rgba(255,255,255,0) 43%),
    linear-gradient(135deg, #38cf98 0%, #22bc68 48%, #159452 100%);
  border: 1px solid rgba(18,139,77,.2);
  border-radius: 999px;
  box-shadow:
    0 16px 34px rgba(21,148,82,.25),
    0 4px 10px rgba(21,148,82,.12),
    inset 0 1px 0 rgba(255,255,255,.38);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .025em;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease, background .22s ease;
}

.button-primary::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 1px;
  right: 12px;
  left: 12px;
  height: 43%;
  background: linear-gradient(180deg, rgba(255,255,255,.2), rgba(255,255,255,0));
  border-radius: 999px 999px 60% 60%;
  pointer-events: none;
}

.button-primary span,
.button-primary svg { position: relative; z-index: 1; }

.button-primary svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  padding: 7px;
  color: #fff;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  stroke-width: 2.5;
  transition: transform .22s ease, background .22s ease;
}

.button-primary:hover {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,.28) 0%, rgba(255,255,255,0) 43%),
    linear-gradient(135deg, #42d7a0 0%, #25c66f 48%, #169b57 100%);
  box-shadow:
    0 22px 42px rgba(21,148,82,.31),
    0 6px 14px rgba(21,148,82,.15),
    inset 0 1px 0 rgba(255,255,255,.46);
  filter: saturate(1.03);
  transform: translateY(-3px);
}

.button-primary:hover svg { background: rgba(255,255,255,.27); transform: translateX(2px); }

.button-primary:active {
  box-shadow:
    0 10px 24px rgba(21,148,82,.22),
    inset 0 2px 4px rgba(10,91,49,.12),
    inset 0 1px 0 rgba(255,255,255,.25);
  filter: none;
  transform: translateY(1px);
}

.button-primary:focus-visible {
  outline: 3px solid rgba(47,128,237,.42);
  outline-offset: 4px;
}

.cta-note,
.hero-cta-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
  padding: 7px 14px;
  color: var(--blue-dark);
  background: rgba(234,244,255,.88);
  border: 1px solid rgba(47,128,237,.1);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .045em;
  line-height: 1.35;
}

.cta-note > span,
.hero-cta-note > span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #fff;
  background: linear-gradient(135deg, #35cc8b, #169b57);
  border-radius: 50%;
  font-size: 11px;
  line-height: 1;
}

.hero-cta-area .button { width: min(100%, 420px); }

.site-header .brand { gap: 0; }
.brand-logo { display: block; width: 185px; height: auto; }

@media (max-width: 1080px) {
  .brand-logo { width: 175px; }
}

@media (max-width: 768px) {
  .contact-heading h2 { font-size: clamp(28px, 8vw, 36px); line-height: 1.45; }
  .contact-heading p br { display: none; }
  .contact-top { padding: 56px 0 185px; }
  .contact-bottom { padding-bottom: 68px; }
  .contact-bottom::before { height: 72px; }
  .contact-points { justify-content: center; gap: 8px; margin: 24px 0 0; }
  .contact-points li { padding: 7px 12px; font-size: 13px; }
  .contact-lead-note { margin-top: 18px; font-size: 15px; line-height: 1.75; }
  .contact-lead-note br { display: none; }
  .contact-card { margin-top: -130px; padding: 0 20px 25px; border-radius: 24px 24px 10px 10px; }
  .thanks-main { padding: 24px 16px; }
  .thanks-card { padding: 32px 20px 34px; border-radius: 24px; }
  .thanks-logo { width: min(100%, 200px); margin-bottom: 24px; }
  .thanks-card__message { font-size: 16px; }
  .form-heading { padding: 28px 0 24px; }
  .form-heading h3 { font-size: 23px; }
  .form-heading p { font-size: 15px; }
  .contact-form { padding-top: 25px; }
  .form-grid { grid-template-columns: 1fr; gap: 20px; }
  .form-wide { grid-column: auto; }
  .form-field input[type="text"], .form-field input[type="email"], .form-field input[type="url"], .form-field select, .form-field textarea { font-size: 16px; }
  .form-submit { margin-top: 27px; }
  .form-note { font-size: 15px; }

  .flow-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 30px; }
  .flow-card { min-height: 0; padding: 24px 21px 23px; border-radius: 20px; }
  .flow-card:nth-child(odd):not(:last-child)::after { display: none; }
  .flow-card:not(:last-child)::after { display: block; top: auto; right: auto; bottom: -19px; left: 34px; width: 2px; height: 19px; background: linear-gradient(180deg, rgba(47,128,237,.48), rgba(47,128,237,.14)); }
  .flow-card__top { margin-bottom: 14px; }
  .flow-card__step { padding: 7px 12px; font-size: 13px; }
  .flow-card h3 { margin-bottom: 9px; font-size: 20px; }
  .flow-card p { font-size: 16px; line-height: 1.75; }
  .flow-card__badge { padding: 6px 10px; font-size: 12px; }
  .flow-cta { margin-top: 32px; padding: 25px 19px 23px; border-radius: 21px; }
  .flow-cta__lead { margin-bottom: 16px; font-size: 20px; }
  .flow-cta .button-primary { width: 100%; }
  .flow-cta .cta-note { justify-content: flex-start; text-align: left; }

  .button-primary {
    width: 100%;
    min-width: 0;
    min-height: 62px;
    padding: 16px 20px;
    font-size: 16px;
  }

  .button-primary svg { width: 28px; height: 28px; padding: 6px; }

  .cta-note,
  .hero-cta-note {
    margin-top: 10px;
    padding: 6px 12px;
    font-size: 14px;
  }

  .brand-logo { width: 145px; }
}

@media (max-width: 480px) {
  .header-cta-full { display: none; }
  .header-cta-short { display: inline; }
}
