

/* Codex hero readability fix */
.hero { padding: 104px 0 92px !important; }
.hero-grid { display: grid !important; grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr) !important; gap: 66px !important; align-items: center !important; }
.hero-copy { display: block !important; min-width: 0 !important; max-width: 620px !important; }
.hero .eyebrow { display: block !important; width: max-content !important; margin: 0 0 20px !important; font-size: 12px !important; line-height: 1.4 !important; }
.hero h1 { display: block !important; margin: 0 0 26px !important; font-size: clamp(38px, 4.2vw, 58px) !important; line-height: 1.28 !important; letter-spacing: .01em !important; word-break: keep-all !important; overflow-wrap: normal !important; }
.hero .lead { max-width: 600px !important; font-size: 15px !important; line-height: 2 !important; }
.hero-collage { align-self: center !important; margin: 0 !important; grid-auto-rows: 126px !important; }
.media-card { display: block !important; min-height: 0 !important; }
@media (max-width: 980px){ .hero-grid{grid-template-columns:1fr !important;} .hero-copy{max-width:none !important;} .hero-collage{grid-auto-rows:130px !important;} }
@media (max-width: 760px){ .hero h1{font-size:34px !important;} .hero-grid{gap:42px !important;} }

/* Codex final restore: keep sections, reference only typography */
.hero { min-height: 0 !important; padding: 120px 0 100px !important; background: radial-gradient(circle at 18% 18%, rgba(230,0,25,.055), transparent 34%), linear-gradient(180deg,#fff,#faf7f7) !important; }
.hero::before { display: none !important; }
.hero-grid { display: grid !important; grid-template-columns: .92fr 1.08fr !important; gap: 72px !important; align-items: center !important; }
.hero-copy, .hero h1, .hero .lead, .hero-actions, .hero-metric, .hero-collage { display: initial !important; height: auto !important; visibility: visible !important; opacity: 1 !important; }
.hero-copy { display: block !important; }
.hero h1 { margin-bottom: 28px !important; font-size: clamp(42px,5vw,70px) !important; font-weight: 900 !important; line-height: 1.18 !important; letter-spacing: .02em !important; color: #141414 !important; }
.hero .lead { display: block !important; max-width: 620px !important; margin: 0 0 34px !important; color: #555 !important; font-size: 16px !important; line-height: 2.05 !important; text-align: left !important; }
.hero-actions { display: flex !important; justify-content: flex-start !important; margin: 0 0 36px !important; }
.hero-actions .button.primary { min-width: 0 !important; min-height: 64px !important; font-size: 15px !important; }
.hero-metric { display: flex !important; width: max-content !important; min-width: 0 !important; margin-top: 0 !important; }
.hero-collage { display: grid !important; grid-template-columns: 1.1fr .9fr .8fr !important; grid-auto-rows: 138px !important; gap: 14px !important; transform: none !important; }
.media-card.large { grid-row: span 2 !important; }
.media-card.wide { grid-column: span 2 !important; }
@media (max-width:980px){ .hero-grid{grid-template-columns:1fr !important;} .hero-collage{grid-auto-rows:130px !important;} }
@media (max-width:760px){ .hero{padding:82px 0 !important;} .hero h1{font-size:39px !important;} .hero-collage{grid-template-columns:1fr 1fr !important; grid-auto-rows:112px !important;} }
:root {
  --white: #fff;
  --off: #f7f9fb;
  --pale: #eff5fa;
  --navy: #0f172a;
  --charcoal: #1f2937;
  --gray: #64748b;
  --line: #e5eaf0;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.container.narrow {
  width: min(820px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(229, 234, 240, 0.8);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, transparent 42%, var(--blue) 43% 57%, transparent 58%),
    linear-gradient(45deg, transparent 42%, var(--cyan) 43% 57%, transparent 58%);
  border: 2px solid #dce8ff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 700;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  padding: 98px 0 86px;
  background:
    radial-gradient(circle at 75% 20%, rgba(6, 182, 212, 0.14), transparent 34%),
    linear-gradient(180deg, var(--white), var(--off));
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 6px 12px;
  color: var(--blue);
  background: #edf5ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.18;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.28;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.45;
}

.lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--gray);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--charcoal);
  font-weight: 800;
}

.hero-metric strong {
  color: var(--blue);
  font-size: 64px;
  line-height: 1;
}

.hero-collage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
  grid-auto-rows: 132px;
  gap: 14px;
}

.media-card,
.service-image,
.work-thumb,
.office-image {
  overflow: hidden;
  border: 1px solid rgba(229, 234, 240, 0.9);
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.media-card.large {
  grid-row: span 2;
}

.media-card.wide {
  grid-column: span 2;
}

.media-camera {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.12), rgba(37, 99, 235, 0.18)),
    url("https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=900&q=80");
}

.media-studio {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.12), rgba(6, 182, 212, 0.14)),
    url("https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=900&q=80");
}

.media-edit {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.1), rgba(37, 99, 235, 0.2)),
    url("https://images.unsplash.com/photo-1574717024653-61fd2cf4d44d?auto=format&fit=crop&w=900&q=80");
}

.media-photo {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(6, 182, 212, 0.16)),
    url("https://images.unsplash.com/photo-1502920917128-1aa500764cbd?auto=format&fit=crop&w=900&q=80");
}

.media-product {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(37, 99, 235, 0.14)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80");
}

.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: 28px 0;
}

.trust-inner p {
  min-width: 250px;
  margin: 0;
  color: var(--gray);
  font-size: 13px;
  font-weight: 700;
}

.client-logos {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #334155;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.section {
  padding: 118px 0;
}

.section.soft {
  background: var(--off);
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading.centered {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p {
  color: var(--gray);
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: end;
}

.card-grid {
  display: grid;
  gap: 28px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.price-card,
.voice-card,
.work-card,
.reason-grid article,
.faq-item,
.contact-form,
.contact-note,
.company-table {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.05);
}

.service-card {
  position: relative;
  padding: 0 0 30px;
  overflow: hidden;
}

.service-card h3,
.service-card p {
  padding-right: 28px;
  padding-left: 28px;
}

.service-card p,
.reason-grid p,
.price-card p,
.work-card p,
.voice-card p {
  color: var(--gray);
}

.service-image {
  height: 190px;
  margin-bottom: 34px;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: none;
}

.icon-badge {
  position: absolute;
  top: 154px;
  left: 26px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.reason-grid article {
  padding: 34px 28px;
}

.reason-icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 900;
}

.price-card {
  padding: 36px 30px;
  text-align: center;
}

.price-card.featured {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 24px 70px rgba(37, 99, 235, 0.13);
}

.price-card strong {
  display: block;
  margin: 30px 0 24px;
  font-size: 30px;
}

.price-card a,
.text-link {
  color: var(--blue);
  font-weight: 900;
}

.price-note {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.work-card {
  overflow: hidden;
}

.work-card-link {
  display: block;
  padding-bottom: 24px;
}

.work-thumb,
.work-thumb-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: none;
}

.work-card h3,
.work-card p,
.tag {
  margin-right: 22px;
  margin-left: 22px;
}

.tag {
  display: inline-flex;
  margin-top: 20px;
  margin-bottom: 14px;
  padding: 4px 10px;
  color: var(--blue);
  background: #edf5ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.flow-step {
  text-align: center;
}

.flow-step span {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  place-items: center;
  color: var(--blue);
  background: var(--off);
  border-radius: 50%;
  font-weight: 900;
}

.flow-step p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.voice-card {
  padding: 26px 22px;
}

.voice-card strong,
.voice-card span {
  display: block;
}

.voice-card strong {
  margin-top: 24px;
}

.voice-card span {
  color: var(--gray);
  font-size: 13px;
}

.faq-item {
  padding: 22px 26px;
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-item p {
  margin: 16px 0 0;
  color: var(--gray);
}

.company-summary {
  padding-top: 40px;
}

.company-overview {
  max-width: 980px;
}

.company-info-section {
  padding-top: 36px;
}

.company-grid,
.company-page-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
}

.office-image {
  min-height: 340px;
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(37, 99, 235, 0.12)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1200&q=80");
}

.final-cta {
  padding: 76px 0;
  background:
    radial-gradient(circle at 90% 50%, rgba(6, 182, 212, 0.2), transparent 32%),
    linear-gradient(135deg, #f4f8ff, #eaf6ff);
}

.final-cta.compact {
  margin-top: 40px;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.final-cta h2 {
  margin-bottom: 14px;
}

.final-cta p {
  margin-bottom: 0;
  color: var(--gray);
}

.site-footer {
  padding: 38px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--gray);
  font-size: 13px;
  font-weight: 800;
}

.copyright {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
}

.page-hero {
  padding: 104px 0 78px;
  background: linear-gradient(180deg, var(--off), var(--white));
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p:last-child {
  max-width: 700px;
  color: var(--gray);
}

.archive-grid {
  margin-top: 10px;
}

.works-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 36px;
}

.works-filter a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.works-filter a.is-active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.detail-thumb img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
}

.content-body {
  color: var(--charcoal);
}

.content-body h2 {
  margin-top: 48px;
}

.detail-cta {
  margin-top: 70px;
  padding: 42px;
  background: var(--off);
  border-radius: var(--radius);
}

.company-table {
  padding: 10px 30px;
}

.company-table div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.company-table div:last-child {
  border-bottom: 0;
}

.company-table dt {
  color: var(--gray);
  font-weight: 800;
}

.company-table dd {
  margin: 0;
}

.contact-grid {
  align-items: start;
}

.contact-note {
  padding: 34px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .wpcf7-form {
  display: grid;
  gap: 18px;
}

.contact-form .wpcf7-form p {
  margin: 0;
}

.contact-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  color: var(--white);
  background: #e60019;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(230, 0, 25, 0.2);
}

.form-note {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
}

.pagination {
  margin-top: 48px;
}

@media (max-width: 980px) {
  .hero-grid,
  .section-heading.split,
  .company-grid,
  .company-page-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .reason-grid,
  .works-grid,
  .voice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero,
  .section,
  .page-hero {
    padding: 72px 0;
  }

  .hero-collage {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 110px;
  }

  .media-card.large,
  .media-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .card-grid.three,
  .reason-grid,
  .works-grid,
  .voice-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .trust-inner,
  .final-cta-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

/* Final visual refresh */
:root {
  --tk-ink: #090d14;
  --tk-text: #182131;
  --tk-muted: #667085;
  --tk-line: #e7ebf0;
  --tk-soft: #f6f7f9;
  --tk-red: #e60019;
  --tk-red-dark: #b90014;
}

body {
  color: var(--tk-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-header {
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom: 1px solid rgba(9, 13, 20, 0.08) !important;
  box-shadow: 0 10px 34px rgba(9, 13, 20, 0.04);
}

.header-inner {
  min-height: 82px;
}

.brand {
  color: var(--tk-ink);
  letter-spacing: 0.08em;
}

.brand-mark {
  border-radius: 0;
  background:
    linear-gradient(135deg, transparent 40%, #1d4ed8 41% 58%, transparent 59%),
    linear-gradient(45deg, transparent 40%, #00a6d6 41% 58%, transparent 59%) !important;
  border: 1px solid #d8e5ff !important;
}

.site-nav a {
  position: relative;
  color: var(--tk-ink);
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--tk-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button.primary,
.contact-form .wpcf7-submit {
  color: #fff !important;
  background: var(--tk-red) !important;
  border: 1px solid var(--tk-red) !important;
  border-radius: 2px !important;
  box-shadow: 0 18px 36px rgba(230, 0, 25, 0.2) !important;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-cta:hover,
.button.primary:hover,
.contact-form .wpcf7-submit:hover {
  background: var(--tk-red-dark) !important;
  box-shadow: 0 14px 28px rgba(185, 0, 20, 0.2) !important;
  transform: translateY(-1px);
}

.button.secondary {
  border-radius: 2px !important;
  border-color: var(--tk-line) !important;
}

.hero,
.page-hero {
  background:
    linear-gradient(90deg, rgba(230, 0, 25, 0.045), transparent 32%),
    linear-gradient(180deg, #fff, #fbfbfc) !important;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.company-summary h2,
.final-cta h2 {
  color: var(--tk-ink) !important;
  letter-spacing: 0 !important;
}

.eyebrow,
.section-kicker {
  color: var(--tk-red) !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  font-size: 12px !important;
  letter-spacing: 0.42em !important;
}

.lead,
.section-heading p,
.page-hero p,
.service-card p,
.reason-grid p,
.price-card p,
.work-card p,
.voice-card p,
.final-cta p,
.contact-note li {
  color: var(--tk-muted) !important;
}

.media-card,
.service-image,
.work-thumb,
.work-thumb-img,
.office-image {
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 26px 70px rgba(9, 13, 20, 0.12) !important;
}

.service-card,
.price-card,
.voice-card,
.work-card,
.reason-grid article,
.faq-item,
.contact-form,
.contact-note,
.company-table {
  border-color: var(--tk-line) !important;
  border-radius: 4px !important;
  box-shadow: 0 18px 56px rgba(9, 13, 20, 0.055) !important;
}

.service-card,
.work-card,
.price-card,
.voice-card,
.reason-grid article {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.work-card:hover,
.price-card:hover,
.voice-card:hover,
.reason-grid article:hover {
  border-color: rgba(230, 0, 25, 0.22) !important;
  box-shadow: 0 24px 70px rgba(9, 13, 20, 0.09) !important;
  transform: translateY(-3px);
}

.price-card.featured {
  color: #fff !important;
  background: var(--tk-ink) !important;
  border-color: var(--tk-ink) !important;
}

.price-card.featured p,
.price-card.featured a {
  color: rgba(255, 255, 255, 0.76) !important;
}

.price-card strong {
  color: var(--tk-ink);
}

.price-card.featured strong {
  color: #fff;
}

.price-card a,
.text-link {
  color: var(--tk-red) !important;
}

.tag,
.works-filter a.is-active,
.reason-icon,
.flow-step span {
  color: #fff !important;
  background: var(--tk-ink) !important;
}

.works-filter a {
  border-radius: 999px !important;
  border-color: var(--tk-line) !important;
}

.company-table {
  background: #fff;
}

.company-table div {
  grid-template-columns: 140px 1fr;
  border-bottom-color: var(--tk-line);
}

.company-table dt,
.contact-form label {
  color: var(--tk-text) !important;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  min-height: 56px;
  border-color: var(--tk-line) !important;
  border-radius: 3px !important;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  min-height: 180px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(230, 0, 25, 0.5) !important;
  box-shadow: 0 0 0 4px rgba(230, 0, 25, 0.08);
  outline: 0;
}

.final-cta {
  background: var(--tk-red) !important;
}

.final-cta h2,
.final-cta p {
  color: #fff !important;
}

.final-cta .button.primary {
  color: var(--tk-red) !important;
  background: #fff !important;
  border-color: #fff !important;
  box-shadow: 0 18px 42px rgba(9, 13, 20, 0.18) !important;
}

.site-footer {
  color: #fff;
  background: #090909 !important;
  border-top: 0 !important;
}

.site-footer .brand,
.footer-nav,
.copyright {
  color: rgba(255, 255, 255, 0.9) !important;
}

@media (max-width: 980px) {
  .site-nav a:not(.nav-cta)::after {
    display: none;
  }
}

@media (max-width: 1100px) {
  .site-nav {
    position: absolute !important;
    top: 82px !important;
    right: 20px !important;
    left: 20px !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 16px !important;
    background: #fff !important;
    border: 1px solid var(--tk-line) !important;
    border-radius: 4px !important;
    box-shadow: 0 24px 70px rgba(9, 13, 20, 0.12) !important;
  }

  .site-nav.is-open {
    display: flex !important;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .site-nav .nav-cta {
    margin-top: 8px;
  }

  .nav-toggle {
    display: block !important;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 72px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100% !important;
    font-size: 34px !important;
    line-height: 1.24 !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  .company-table {
    padding: 4px 22px;
  }

  .company-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Mobile section fixes */
@media (max-width: 640px) {
  .section-heading.split {
    display: block !important;
    margin-bottom: 34px !important;
  }

  .section-heading.split > div,
  .section-heading.split > p,
  .section-heading.split > a {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
  }

  .section-heading.split > p {
    margin-top: 18px !important;
  }

  .section-heading.split > a {
    margin-top: 18px !important;
  }

  .section-heading.split h2 {
    width: 100% !important;
    max-width: none !important;
    font-size: 30px !important;
    line-height: 1.35 !important;
  }

  .voice-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .voice-card {
    width: 100% !important;
  }
}

/* Desktop hero collage spacing */
@media (min-width: 981px) {
  .hero-collage {
    grid-template-columns: 1.05fr 0.9fr 0.95fr !important;
    grid-auto-rows: 124px !important;
    gap: 20px !important;
    align-items: stretch !important;
    transform: none !important;
  }

  .hero-collage .media-card {
    width: auto !important;
    height: auto !important;
  }

  .hero-collage .media-card.large {
    grid-row: span 2 !important;
  }

  .hero-collage .media-card.wide {
    grid-column: span 2 !important;
  }

  .hero-collage .media-studio {
    transform: translateY(-8px);
  }

  .hero-collage .media-edit {
    transform: translateY(8px);
  }

  .hero-collage .media-product {
    transform: translateY(-4px);
  }
}

/* Single hero image */
.hero-single-visual {
  display: block !important;
  position: relative !important;
  min-height: 520px !important;
  margin-top: 20px !important;
}

.hero-shoot-image {
  position: relative;
  width: min(100%, 620px);
  min-height: 520px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  background-image:
    linear-gradient(135deg, rgba(9, 13, 20, 0.12), rgba(230, 0, 25, 0.08)),
    url("https://images.pexels.com/photos/3062532/pexels-photo-3062532.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-position: center;
  background-size: cover;
  box-shadow: 0 32px 90px rgba(9, 13, 20, 0.16);
}

.hero-shoot-image::after {
  position: absolute;
  inset: auto 22px 22px 22px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.55);
}

@media (min-width: 981px) {
  .hero-single-visual {
    align-self: center !important;
  }

  .section-heading h2,
  .company-summary h2,
  .final-cta h2,
  .page-hero h1 {
    font-size: clamp(30px, 2.8vw, 40px) !important;
    line-height: 1.36 !important;
  }
}

@media (max-width: 980px) {
  .hero-single-visual {
    min-height: 360px !important;
    margin-top: 0 !important;
  }

  .hero-shoot-image {
    width: 100%;
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .hero-single-visual {
    min-height: 260px !important;
  }

  .hero-shoot-image {
    min-height: 260px;
    background-position: 55% center;
  }
}

.compact-page-hero {
  padding-bottom: 30px !important;
}

.compact-content-section {
  padding-top: 18px !important;
}

/* Prevent the desktop hero collage from overlapping the headline. */
@media (min-width: 981px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr) !important;
    gap: clamp(72px, 6vw, 108px) !important;
    align-items: start !important;
  }

  .hero-copy {
    max-width: 100% !important;
    position: relative !important;
    z-index: 2 !important;
  }

  .hero h1 {
    max-width: 100% !important;
    font-size: clamp(42px, 3.55vw, 56px) !important;
    line-height: 1.2 !important;
  }

  .hero .lead {
    padding-top: 12px !important;
    max-width: 620px !important;
  }

  .hero-collage {
    position: relative !important;
    z-index: 1 !important;
    margin-top: 72px !important;
    grid-auto-rows: clamp(112px, 8vw, 132px) !important;
  }
}

@media (min-width: 1280px) {
  .container {
    width: min(1240px, calc(100% - 80px));
  }
}

/* Premium visual pass */
:root {
  --navy: #07111f;
  --charcoal: #263244;
  --gray: #64748b;
  --blue: #155eef;
  --cyan: #00a6d6;
  --line: #e7edf4;
  --off: #f6f8fb;
  --shadow: 0 30px 80px rgba(7, 17, 31, 0.1);
  --radius: 14px;
}

body {
  color: var(--navy);
  background: #fff;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

.site-header {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(231, 237, 244, 0.72);
  backdrop-filter: blur(24px);
}

.header-inner {
  min-height: 84px;
}

.brand {
  font-size: 21px;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  box-shadow: 0 12px 28px rgba(21, 94, 239, 0.18);
}

.site-nav {
  gap: 32px;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
}

.nav-cta,
.button.primary {
  background: linear-gradient(135deg, #1055e8 0%, #00acd7 100%);
  box-shadow: 0 18px 40px rgba(21, 94, 239, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.8);
  border-color: #dbe5ef;
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.06);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 130px 0 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 166, 214, 0.2), transparent 31%),
    radial-gradient(circle at 10% 0%, rgba(21, 94, 239, 0.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.hero::before {
  position: absolute;
  inset: 90px 0 auto auto;
  z-index: 0;
  width: 45vw;
  height: 520px;
  content: "";
  background: linear-gradient(135deg, rgba(21, 94, 239, 0.11), rgba(0, 166, 214, 0.11));
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 78%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
}

.eyebrow,
.section-kicker {
  padding: 8px 14px;
  color: #1457e6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #eef6ff;
  border: 1px solid #dcecff;
}

.hero h1 {
  margin-bottom: 30px;
  font-size: clamp(48px, 5.8vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.lead {
  max-width: 660px;
  margin-bottom: 38px;
  color: #445168;
  font-size: 18px;
  line-height: 2;
}

.hero-actions {
  gap: 16px;
  margin-bottom: 42px;
}

.hero-metric {
  width: max-content;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #e5edf6;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(7, 17, 31, 0.08);
}

.hero-metric strong {
  font-size: 72px;
  color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-collage {
  grid-template-columns: 1.15fr 0.9fr 0.72fr;
  grid-auto-rows: 150px;
  gap: 18px;
  transform: translateY(8px);
}

.media-card,
.service-image,
.work-thumb,
.office-image {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(7, 17, 31, 0.13);
}

.media-card.large {
  grid-row: span 3;
}

.media-card.wide {
  grid-column: span 2;
}

.media-card:nth-child(2),
.media-card:nth-child(4) {
  transform: translateY(28px);
}

.trust-strip {
  color: #fff;
  background: var(--navy);
  border: 0;
}

.trust-inner {
  padding: 34px 0;
}

.trust-inner p {
  color: #aebbd0;
}

.client-logos {
  color: #fff;
  opacity: 0.9;
}

.section {
  padding: 144px 0;
}

.section.soft {
  background: linear-gradient(180deg, #f7f9fc, #fff);
}

.section-heading {
  margin-bottom: 70px;
}

.section-heading.centered {
  max-width: 820px;
}

.section-heading.split {
  gap: 84px;
  align-items: center;
}

.section-heading p {
  font-size: 16px;
  line-height: 2;
}

.section h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.card-grid {
  gap: 32px;
}

.service-card,
.price-card,
.voice-card,
.work-card,
.reason-grid article,
.faq-item,
.contact-form,
.contact-note,
.company-table {
  background: rgba(255, 255, 255, 0.92);
  border-color: #e8eef5;
  border-radius: 18px;
  box-shadow: 0 20px 58px rgba(7, 17, 31, 0.06);
}

.service-card,
.work-card,
.price-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.work-card:hover,
.price-card:hover {
  box-shadow: 0 30px 80px rgba(7, 17, 31, 0.11);
  transform: translateY(-5px);
}

.service-image {
  height: 230px;
  margin-bottom: 42px;
  border-radius: 18px 18px 0 0;
}

.icon-badge {
  top: 188px;
  left: 28px;
  width: auto;
  height: 42px;
  padding: 0 18px;
  color: #fff;
  letter-spacing: 0.08em;
  background: var(--navy);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(7, 17, 31, 0.22);
}

.service-card h3,
.service-card p {
  padding-right: 32px;
  padding-left: 32px;
}

.service-card h3 {
  font-size: 24px;
}

.reason-grid {
  gap: 24px;
}

.reason-grid article {
  position: relative;
  padding: 42px 30px;
  overflow: hidden;
}

.reason-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.reason-icon {
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: 0.16em;
}

.price-card {
  padding: 44px 34px;
  text-align: left;
}

.price-card.featured {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 34px 90px rgba(7, 17, 31, 0.24);
}

.price-card.featured p {
  color: #c9d3e3;
}

.price-card strong {
  font-size: 34px;
}

.works-grid {
  gap: 30px;
}

.work-thumb,
.work-thumb-img {
  height: 230px;
  border-radius: 18px 18px 0 0;
}

.tag {
  color: #1457e6;
  background: #eef6ff;
  border: 1px solid #dcecff;
}

.flow-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.06);
}

.flow-step {
  padding: 32px 18px;
  background: #fff;
  border-right: 1px solid #e8eef5;
}

.flow-step:last-child {
  border-right: 0;
}

.flow-step span {
  color: #fff;
  background: var(--navy);
}

.voice-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.voice-card {
  padding: 32px 24px;
}

.voice-card p::before {
  display: block;
  color: var(--cyan);
  font-size: 42px;
  line-height: 1;
  content: "“";
}

.final-cta {
  padding: 94px 0;
  color: #fff;
  background:
    radial-gradient(circle at 88% 50%, rgba(0, 166, 214, 0.32), transparent 28%),
    linear-gradient(135deg, #07111f, #10233d);
}

.final-cta p {
  color: #c7d2e2;
}

.final-cta .button.primary {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.site-footer {
  color: #fff;
  background: var(--navy);
  border-top: 0;
}

.footer-nav,
.copyright {
  color: #aebbd0;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 96px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    grid-auto-rows: 130px;
  }

  .flow-step {
    border-bottom: 1px solid #e8eef5;
  }

  .site-nav {
    top: 84px;
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .page-hero {
    padding: 76px 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 16px;
  }
}

/* TATEDOUGA-inspired direction */
:root {
  --navy: #141414;
  --charcoal: #2f2f2f;
  --gray: #7c7c7c;
  --blue: #e60019;
  --cyan: #ff3b4f;
  --line: #ece7e7;
  --off: #f8f3f3;
  --shadow: 0 20px 60px rgba(20, 20, 20, 0.08);
  --radius: 4px;
}

body {
  color: var(--navy);
  background: #fff;
  font-family: "Helvetica Neue", "Noto Sans JP", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.9;
}

.container {
  width: min(1180px, calc(100% - 64px));
}

.site-header {
  position: sticky;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #eee8e8;
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 80px;
}

.brand {
  gap: 12px;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 0;
  box-shadow: none;
}

.site-nav {
  gap: 42px;
  color: #191919;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.site-nav a:not(.nav-cta)::after {
  bottom: -12px;
  height: 1px;
  background: var(--blue);
}

.nav-cta,
.button {
  min-height: 58px;
  padding: 0 34px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: #e60019;
  box-shadow: 0 18px 34px rgba(230, 0, 25, 0.18);
}

.button.secondary {
  color: #151515;
  background: #fff;
  border: 1px solid #e6dddd;
  box-shadow: none;
}

.hero-cinematic {
  min-height: 0;
  padding: 106px 0 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(230, 0, 25, 0.055), transparent 34%),
    linear-gradient(180deg, #fff, #faf6f6);
}

.hero-cinematic::before,
.hero-grid,
.hero-collage {
  display: none;
}

.hero-intro {
  display: grid;
  min-height: 180px;
  place-items: center;
  text-align: center;
}

.hero-intro .eyebrow {
  margin-bottom: 20px;
}

.eyebrow,
.section-kicker {
  padding: 0;
  color: #e60019;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: clamp(45px, 6vw, 84px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.04em;
}

.lead {
  max-width: 780px;
  margin: 0 auto;
  color: #555;
  font-size: 16px;
  line-height: 2;
  text-align: center;
}

.hero-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin-top: 70px;
}

.mosaic-image {
  min-height: 310px;
  background-position: center;
  background-size: cover;
}

.mosaic-image:nth-child(1),
.mosaic-image:nth-child(4) {
  min-height: 360px;
}

.hero-overlay {
  position: absolute;
  inset: 50%;
  display: grid;
  min-width: min(620px, calc(100% - 48px));
  color: #fff;
  text-align: center;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
}

.hero-overlay span {
  margin-bottom: 18px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-overlay strong {
  font-size: clamp(36px, 5.6vw, 76px);
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0.07em;
}

.hero-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  padding: 0 0 96px;
}

.hero-actions {
  justify-content: flex-end;
  margin: -36px 0 0;
}

.hero-actions .button.primary {
  min-width: 310px;
  min-height: 96px;
  font-size: 19px;
  letter-spacing: 0.12em;
}

.hero-metric {
  width: auto;
  min-width: 238px;
  padding: 22px 28px;
  margin-top: 28px;
  background: #fff;
  border: 1px solid #eee5e5;
  border-radius: 0;
  box-shadow: 0 18px 46px rgba(20, 20, 20, 0.07);
}

.hero-metric strong {
  color: #e60019;
  background: none;
  -webkit-text-fill-color: #e60019;
  font-size: 64px;
  font-weight: 900;
}

.trust-strip {
  color: #111;
  background: #fff;
  border-top: 1px solid #eee8e8;
  border-bottom: 1px solid #eee8e8;
}

.trust-inner {
  padding: 34px 0;
}

.trust-inner p {
  color: #747474;
}

.client-logos {
  color: #161616;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.section {
  padding: 138px 0;
}

.section.soft {
  background: #faf7f7;
}

.section-heading {
  margin-bottom: 72px;
}

.section-heading.centered {
  max-width: 900px;
}

.section-heading.split {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 96px;
}

h2,
.section h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0.02em;
}

h3 {
  font-size: 23px;
  font-weight: 900;
  line-height: 1.5;
}

.section-heading.centered::after {
  display: block;
  width: 72px;
  height: 2px;
  margin: 30px auto 0;
  content: "";
  background: #e60019;
}

.card-grid.three,
.works-grid {
  gap: 46px;
}

.service-card,
.price-card,
.voice-card,
.work-card,
.reason-grid article,
.faq-item,
.contact-form,
.contact-note,
.company-table {
  background: #fff;
  border: 1px solid #eee5e5;
  border-radius: 0;
  box-shadow: none;
}

.service-card:hover,
.work-card:hover,
.price-card:hover {
  box-shadow: 0 24px 55px rgba(20, 20, 20, 0.09);
  transform: translateY(-4px);
}

.service-image,
.work-thumb,
.work-thumb-img,
.office-image {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-image,
.work-thumb,
.work-thumb-img {
  height: 255px;
}

.icon-badge {
  top: 222px;
  color: #fff;
  background: #e60019;
  border-radius: 0;
  box-shadow: none;
}

.reason-grid {
  gap: 0;
  border-top: 1px solid #eee5e5;
  border-left: 1px solid #eee5e5;
}

.reason-grid article {
  border-top: 0;
  border-left: 0;
}

.reason-grid article::before {
  height: 0;
}

.reason-icon {
  color: #e60019;
  letter-spacing: 0.2em;
}

.price-card {
  padding: 44px 36px;
}

.price-card.featured {
  color: #fff;
  background: #111;
  border-color: #111;
  box-shadow: none;
}

.price-card a,
.text-link {
  color: #e60019;
}

.tag {
  color: #e60019;
  background: #fff;
  border: 1px solid #e60019;
  border-radius: 0;
}

.flow-grid {
  border-radius: 0;
  box-shadow: none;
}

.flow-step span {
  background: #e60019;
}

.final-cta {
  color: #fff;
  background: #e60019;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.final-cta .button.primary {
  color: #e60019;
  background: #fff;
}

.site-footer {
  color: #fff;
  background: #111;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    min-height: 72px;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero-cinematic {
    padding-top: 72px;
  }

  .hero-intro {
    min-height: 130px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-mosaic {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .mosaic-image,
  .mosaic-image:nth-child(1),
  .mosaic-image:nth-child(4) {
    min-height: 230px;
  }

  .hero-bottom {
    display: block;
    padding-bottom: 70px;
  }

  .hero-actions {
    margin: 22px 0 0;
  }

  .hero-actions .button.primary {
    min-width: 0;
    min-height: 74px;
  }

  .section {
    padding: 92px 0;
  }
}

/* Restore original information architecture, keep reference typography */
.hero {
  min-height: 0;
  padding: 120px 0 100px;
  background:
    radial-gradient(circle at 18% 18%, rgba(230, 0, 25, 0.055), transparent 34%),
    linear-gradient(180deg, #fff, #faf7f7);
}

.hero::before,
.hero-cinematic::before {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: center;
}

.hero-collage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
  grid-auto-rows: 138px;
  gap: 14px;
  transform: none;
}

.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0.02em;
}

.hero .lead {
  max-width: 620px;
  margin: 0 0 34px;
  color: #555;
  font-size: 16px;
  line-height: 2.05;
  text-align: left;
}

.hero-actions {
  justify-content: flex-start;
  margin: 0 0 36px;
}

.hero-actions .button.primary {
  min-width: 0;
  min-height: 64px;
  font-size: 15px;
}

.hero-metric {
  width: max-content;
  min-width: 0;
  margin-top: 0;
}

.media-card.large {
  grid-row: span 2;
}

.media-card.wide {
  grid-column: span 2;
}

.media-card:nth-child(2),
.media-card:nth-child(4) {
  transform: none;
}

.trust-strip {
  background: #fff;
}

.section-heading.centered::after {
  margin-top: 32px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    grid-auto-rows: 130px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 82px 0;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-collage {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 112px;
  }
}
:root {
  --white: #fff;
  --off: #f7f9fb;
  --pale: #eff5fa;
  --navy: #0f172a;
  --charcoal: #1f2937;
  --gray: #64748b;
  --line: #e5eaf0;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);:root {
  --white: #fff;
  --off: #f7f9fb;
  --pale: #eff5fa;
  --navy: #0f172a;
  --charcoal: #1f2937;
  --gray: #64748b;
  --line: #e5eaf0;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.container.narrow {
  width: min(820px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(229, 234, 240, 0.8);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, transparent 42%, var(--blue) 43% 57%, transparent 58%),
    linear-gradient(45deg, transparent 42%, var(--cyan) 43% 57%, transparent 58%);
  border: 2px solid #dce8ff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 700;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  padding: 98px 0 86px;
  background:
    radial-gradient(circle at 75% 20%, rgba(6, 182, 212, 0.14), transparent 34%),
    linear-gradient(180deg, var(--white), var(--off));
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 6px 12px;
  color: var(--blue);
  background: #edf5ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.18;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.28;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.45;
}

.lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--gray);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--charcoal);
  font-weight: 800;
}

.hero-metric strong {
  color: var(--blue);
  font-size: 64px;
  line-height: 1;
}

.hero-collage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
  grid-auto-rows: 132px;
  gap: 14px;
}

.media-card,
.service-image,
.work-thumb,
.office-image {
  overflow: hidden;
  border: 1px solid rgba(229, 234, 240, 0.9);
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.media-card.large {
  grid-row: span 2;
}

.media-card.wide {
  grid-column: span 2;
}

.media-camera {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.12), rgba(37, 99, 235, 0.18)),
    url("https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=900&q=80");
}

.media-studio {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.12), rgba(6, 182, 212, 0.14)),
    url("https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=900&q=80");
}

.media-edit {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.1), rgba(37, 99, 235, 0.2)),
    url("https://images.unsplash.com/photo-1574717024653-61fd2cf4d44d?auto=format&fit=crop&w=900&q=80");
}

.media-photo {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(6, 182, 212, 0.16)),
    url("https://images.unsplash.com/photo-1502920917128-1aa500764cbd?auto=format&fit=crop&w=900&q=80");
}

.media-product {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(37, 99, 235, 0.14)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80");
}

.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: 28px 0;
}

.trust-inner p {
  min-width: 250px;
  margin: 0;
  color: var(--gray);
  font-size: 13px;
  font-weight: 700;
}

.client-logos {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #334155;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.section {
  padding: 118px 0;
}

.section.soft {
  background: var(--off);
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading.centered {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p {
  color: var(--gray);
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: end;
}

.card-grid {
  display: grid;
  gap: 28px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.price-card,
.voice-card,
.work-card,
.reason-grid article,
.faq-item,
.contact-form,
.contact-note,
.company-table {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.05);
}

.service-card {
  position: relative;
  padding: 0 0 30px;
  overflow: hidden;
}

.service-card h3,
.service-card p {
  padding-right: 28px;
  padding-left: 28px;
}

.service-card p,
.reason-grid p,
.price-card p,
.work-card p,
.voice-card p {
  color: var(--gray);
}

.service-image {
  height: 190px;
  margin-bottom: 34px;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: none;
}

.icon-badge {
  position: absolute;
  top: 154px;
  left: 26px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.reason-grid article {
  padding: 34px 28px;
}

.reason-icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 900;
}

.price-card {
  padding: 36px 30px;
  text-align: center;
}

.price-card.featured {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 24px 70px rgba(37, 99, 235, 0.13);
}

.price-card strong {
  display: block;
  margin: 30px 0 24px;
  font-size: 30px;
}

.price-card a,
.text-link {
  color: var(--blue);
  font-weight: 900;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.work-card {
  overflow: hidden;
}

.work-card-link {
  display: block;
  padding-bottom: 24px;
}

.work-thumb,
.work-thumb-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: none;
}

.work-card h3,
.work-card p,
.tag {
  margin-top: 20px;
  margin-right: 22px;
  margin-left: 22px;
}

.tag {
  display: inline-flex;
  margin-top: 20px;
  margin-bottom: 14px;
  padding: 4px 10px;
  color: var(--blue);
  background: #edf5ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.flow-step {
  text-align: center;
}

.flow-step span {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  place-items: center;
  color: var(--blue);
  background: var(--off);
  border-radius: 50%;
  font-weight: 900;
}

.flow-step p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.voice-card {
  padding: 26px 22px;
}

.voice-card strong,
.voice-card span {
  display: block;
}

.voice-card strong {
  margin-top: 24px;
}

.voice-card span {
  color: var(--gray);
  font-size: 13px;
}

.faq-item {
  padding: 22px 26px;
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-item p {
  margin: 16px 0 0;
  color: var(--gray);
}

.company-summary {
  padding-top: 40px;
}

.company-grid,
.company-page-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
}

.office-image {
  min-height: 340px;
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(37, 99, 235, 0.12)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1200&q=80");
}

.final-cta {
  padding: 76px 0;
  background:
    radial-gradient(circle at 90% 50%, rgba(6, 182, 212, 0.2), transparent 32%),
    linear-gradient(135deg, #f4f8ff, #eaf6ff);
}

.final-cta.compact {
  margin-top: 40px;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.final-cta h2 {
  margin-bottom: 14px;
}

.final-cta p {
  margin-bottom: 0;
  color: var(--gray);
}

.site-footer {
  padding: 38px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--gray);
  font-size: 13px;
  font-weight: 800;
}

.copyright {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
}

.page-hero {
  padding: 104px 0 78px;
  background: linear-gradient(180deg, var(--off), var(--white));
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p:last-child {
  max-width: 700px;
  color: var(--gray);
}

.archive-grid {
  margin-top: 10px;
}

.detail-thumb img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
}

.content-body {
  color: var(--charcoal);
}

.content-body h2 {
  margin-top: 48px;
}

.detail-cta {
  margin-top: 70px;
  padding: 42px;
  background: var(--off);
  border-radius: var(--radius);
}

.company-table {
  padding: 10px 30px;
}

.company-table div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.company-table div:last-child {
  border-bottom: 0;
}

.company-table dt {
  color: var(--gray);
  font-weight: 800;
}

.company-table dd {
  margin: 0;
}

.contact-grid {
  align-items: start;
}

.contact-note {
  padding: 34px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
}

.pagination {
  margin-top: 48px;
}

@media (max-width: 980px) {
  .hero-grid,
  .section-heading.split,
  .company-grid,
  .company-page-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .reason-grid,
  .works-grid,
  .voice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero,
  .section,
  .page-hero {
    padding: 72px 0;
  }

  .hero-collage {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 110px;
  }

  .media-card.large,
  .media-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .card-grid.three,
  .reason-grid,
  .works-grid,
  .voice-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .trust-inner,
  .final-cta-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

/* Premium visual pass */
:root {
  --navy: #07111f;
  --charcoal: #263244;
  --gray: #64748b;
  --blue: #155eef;
  --cyan: #00a6d6;
  --line: #e7edf4;
  --off: #f6f8fb;
  --shadow: 0 30px 80px rgba(7, 17, 31, 0.1);
  --radius: 14px;
}

body {
  color: var(--navy);
  background: #fff;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

.site-header {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(231, 237, 244, 0.72);
  backdrop-filter: blur(24px);
}

.header-inner {
  min-height: 84px;
}

.brand {
  font-size: 21px;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  box-shadow: 0 12px 28px rgba(21, 94, 239, 0.18);
}

.site-nav {
  gap: 32px;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
}

.nav-cta,
.button.primary {
  background: linear-gradient(135deg, #1055e8 0%, #00acd7 100%);
  box-shadow: 0 18px 40px rgba(21, 94, 239, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.8);
  border-color: #dbe5ef;
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.06);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 130px 0 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 166, 214, 0.2), transparent 31%),
    radial-gradient(circle at 10% 0%, rgba(21, 94, 239, 0.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.hero::before {
  position: absolute;
  inset: 90px 0 auto auto;
  z-index: 0;
  width: 45vw;
  height: 520px;
  content: "";
  background: linear-gradient(135deg, rgba(21, 94, 239, 0.11), rgba(0, 166, 214, 0.11));
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 78%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
}

.eyebrow,
.section-kicker {
  padding: 8px 14px;
  color: #1457e6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #eef6ff;
  border: 1px solid #dcecff;
}

.hero h1 {
  margin-bottom: 30px;
  font-size: clamp(48px, 5.8vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.lead {
  max-width: 660px;
  margin-bottom: 38px;
  color: #445168;
  font-size: 18px;
  line-height: 2;
}

.hero-actions {
  gap: 16px;
  margin-bottom: 42px;
}

.hero-metric {
  width: max-content;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #e5edf6;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(7, 17, 31, 0.08);
}

.hero-metric strong {
  font-size: 72px;
  color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-collage {
  grid-template-columns: 1.15fr 0.9fr 0.72fr;
  grid-auto-rows: 150px;
  gap: 18px;
  transform: translateY(8px);
}

.media-card,
.service-image,
.work-thumb,
.office-image {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(7, 17, 31, 0.13);
}

.media-card.large {
  grid-row: span 3;
}

.media-card.wide {
  grid-column: span 2;
}

.media-card:nth-child(2),
.media-card:nth-child(4) {
  transform: translateY(28px);
}

.trust-strip {
  color: #fff;
  background: var(--navy);
  border: 0;
}

.trust-inner {
  padding: 34px 0;
}

.trust-inner p {
  color: #aebbd0;
}

.client-logos {
  color: #fff;
  opacity: 0.9;
}

.section {
  padding: 144px 0;
}

.section.soft {
  background: linear-gradient(180deg, #f7f9fc, #fff);
}

.section-heading {
  margin-bottom: 70px;
}

.section-heading.centered {
  max-width: 820px;
}

.section-heading.split {
  gap: 84px;
  align-items: center;
}

.section-heading p {
  font-size: 16px;
  line-height: 2;
}

.section h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.card-grid {
  gap: 32px;
}

.service-card,
.price-card,
.voice-card,
.work-card,
.reason-grid article,
.faq-item,
.contact-form,
.contact-note,
.company-table {
  background: rgba(255, 255, 255, 0.92);
  border-color: #e8eef5;
  border-radius: 18px;
  box-shadow: 0 20px 58px rgba(7, 17, 31, 0.06);
}

.service-card,
.work-card,
.price-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.work-card:hover,
.price-card:hover {
  box-shadow: 0 30px 80px rgba(7, 17, 31, 0.11);
  transform: translateY(-5px);
}

.service-image {
  height: 230px;
  margin-bottom: 42px;
  border-radius: 18px 18px 0 0;
}

.icon-badge {
  top: 188px;
  left: 28px;
  width: auto;
  height: 42px;
  padding: 0 18px;
  color: #fff;
  letter-spacing: 0.08em;
  background: var(--navy);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(7, 17, 31, 0.22);
}

.service-card h3,
.service-card p {
  padding-right: 32px;
  padding-left: 32px;
}

.service-card h3 {
  font-size: 24px;
}

.reason-grid {
  gap: 24px;
}

.reason-grid article {
  position: relative;
  padding: 42px 30px;
  overflow: hidden;
}

.reason-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.reason-icon {
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: 0.16em;
}

.price-card {
  padding: 44px 34px;
  text-align: left;
}

.price-card.featured {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 34px 90px rgba(7, 17, 31, 0.24);
}

.price-card.featured p {
  color: #c9d3e3;
}

.price-card strong {
  font-size: 34px;
}

.works-grid {
  gap: 30px;
}

.work-thumb,
.work-thumb-img {
  height: 230px;
  border-radius: 18px 18px 0 0;
}

.tag {
  color: #1457e6;
  background: #eef6ff;
  border: 1px solid #dcecff;
}

.flow-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.06);
}

.flow-step {
  padding: 32px 18px;
  background: #fff;
  border-right: 1px solid #e8eef5;
}

.flow-step:last-child {
  border-right: 0;
}

.flow-step span {
  color: #fff;
  background: var(--navy);
}

.voice-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.voice-card {
  padding: 32px 24px;
}

.voice-card p::before {
  display: block;
  color: var(--cyan);
  font-size: 42px;
  line-height: 1;
  content: "“";
}

.final-cta {
  padding: 94px 0;
  color: #fff;
  background:
    radial-gradient(circle at 88% 50%, rgba(0, 166, 214, 0.32), transparent 28%),
    linear-gradient(135deg, #07111f, #10233d);
}

.final-cta p {
  color: #c7d2e2;
}

.final-cta .button.primary {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.site-footer {
  color: #fff;
  background: var(--navy);
  border-top: 0;
}

.footer-nav,
.copyright {
  color: #aebbd0;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 96px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    grid-auto-rows: 130px;
  }

  .flow-step {
    border-bottom: 1px solid #e8eef5;
  }

  .site-nav {
    top: 84px;
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .page-hero {
    padding: 76px 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 16px;
  }
}

/* TATEDOUGA-inspired direction */
:root {
  --navy: #141414;
  --charcoal: #2f2f2f;
  --gray: #7c7c7c;
  --blue: #e60019;
  --cyan: #ff3b4f;
  --line: #ece7e7;
  --off: #f8f3f3;
  --shadow: 0 20px 60px rgba(20, 20, 20, 0.08);
  --radius: 4px;
}

body {
  color: var(--navy);
  background: #fff;
  font-family: "Helvetica Neue", "Noto Sans JP", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.9;
}

.container {
  width: min(1180px, calc(100% - 64px));
}

.site-header {
  position: sticky;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #eee8e8;
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 80px;
}

.brand {
  gap: 12px;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 0;
  box-shadow: none;
}

.site-nav {
  gap: 42px;
  color: #191919;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.site-nav a:not(.nav-cta)::after {
  bottom: -12px;
  height: 1px;
  background: var(--blue);
}

.nav-cta,
.button {
  min-height: 58px;
  padding: 0 34px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: #e60019;
  box-shadow: 0 18px 34px rgba(230, 0, 25, 0.18);
}

.button.secondary {
  color: #151515;
  background: #fff;
  border: 1px solid #e6dddd;
  box-shadow: none;
}

.hero-cinematic {
  min-height: 0;
  padding: 106px 0 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(230, 0, 25, 0.055), transparent 34%),
    linear-gradient(180deg, #fff, #faf6f6);
}

.hero-cinematic::before,
.hero-grid,
.hero-collage {
  display: none;
}

.hero-intro {
  display: grid;
  min-height: 180px;
  place-items: center;
  text-align: center;
}

.hero-intro .eyebrow {
  margin-bottom: 20px;
}

.eyebrow,
.section-kicker {
  padding: 0;
  color: #e60019;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: clamp(45px, 6vw, 84px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.04em;
}

.lead {
  max-width: 780px;
  margin: 0 auto;
  color: #555;
  font-size: 16px;
  line-height: 2;
  text-align: center;
}

.hero-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin-top: 70px;
}

.mosaic-image {
  min-height: 310px;
  background-position: center;
  background-size: cover;
}

.mosaic-image:nth-child(1),
.mosaic-image:nth-child(4) {
  min-height: 360px;
}

.hero-overlay {
  position: absolute;
  inset: 50%;
  display: grid;
  min-width: min(620px, calc(100% - 48px));
  color: #fff;
  text-align: center;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
}

.hero-overlay span {
  margin-bottom: 18px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-overlay strong {
  font-size: clamp(36px, 5.6vw, 76px);
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0.07em;
}

.hero-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  padding: 0 0 96px;
}

.hero-actions {
  justify-content: flex-end;
  margin: -36px 0 0;
}

.hero-actions .button.primary {
  min-width: 310px;
  min-height: 96px;
  font-size: 19px;
  letter-spacing: 0.12em;
}

.hero-metric {
  width: auto;
  min-width: 238px;
  padding: 22px 28px;
  margin-top: 28px;
  background: #fff;
  border: 1px solid #eee5e5;
  border-radius: 0;
  box-shadow: 0 18px 46px rgba(20, 20, 20, 0.07);
}

.hero-metric strong {
  color: #e60019;
  background: none;
  -webkit-text-fill-color: #e60019;
  font-size: 64px;
  font-weight: 900;
}

.trust-strip {
  color: #111;
  background: #fff;
  border-top: 1px solid #eee8e8;
  border-bottom: 1px solid #eee8e8;
}

.trust-inner {
  padding: 34px 0;
}

.trust-inner p {
  color: #747474;
}

.client-logos {
  color: #161616;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.section {
  padding: 138px 0;
}

.section.soft {
  background: #faf7f7;
}

.section-heading {
  margin-bottom: 72px;
}

.section-heading.centered {
  max-width: 900px;
}

.section-heading.split {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 96px;
}

h2,
.section h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0.02em;
}

h3 {
  font-size: 23px;
  font-weight: 900;
  line-height: 1.5;
}

.section-heading.centered::after {
  display: block;
  width: 72px;
  height: 2px;
  margin: 30px auto 0;
  content: "";
  background: #e60019;
}

.card-grid.three,
.works-grid {
  gap: 46px;
}

.service-card,
.price-card,
.voice-card,
.work-card,
.reason-grid article,
.faq-item,
.contact-form,
.contact-note,
.company-table {
  background: #fff;
  border: 1px solid #eee5e5;
  border-radius: 0;
  box-shadow: none;
}

.service-card:hover,
.work-card:hover,
.price-card:hover {
  box-shadow: 0 24px 55px rgba(20, 20, 20, 0.09);
  transform: translateY(-4px);
}

.service-image,
.work-thumb,
.work-thumb-img,
.office-image {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-image,
.work-thumb,
.work-thumb-img {
  height: 240px;
}

.icon-badge {
  top: 222px;
  color: #fff;
  background: #e60019;
  border-radius: 0;
  box-shadow: none;
}

.reason-grid {
  gap: 0;
  border-top: 1px solid #eee5e5;
  border-left: 1px solid #eee5e5;
}

.reason-grid article {
  border-top: 0;
  border-left: 0;
}

.reason-grid article::before {
  height: 0;
}

.reason-icon {
  color: #e60019;
  letter-spacing: 0.2em;
}

.price-card {
  padding: 44px 36px;
}

.price-card.featured {
  color: #fff;
  background: #111;
  border-color: #111;
  box-shadow: none;
}

.price-card a,
.text-link {
  color: #e60019;
}

.tag {
  color: #e60019;
  background: #fff;
  border: 1px solid #e60019;
  border-radius: 0;
}

.flow-grid {
  border-radius: 0;
  box-shadow: none;
}

.flow-step span {
  background: #e60019;
}

.final-cta {
  color: #fff;
  background: #e60019;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.final-cta .button.primary {
  color: #e60019;
  background: #fff;
}

.site-footer {
  color: #fff;
  background: #111;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    min-height: 72px;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero-cinematic {
    padding-top: 72px;
  }

  .hero-intro {
    min-height: 130px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-mosaic {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .mosaic-image,
  .mosaic-image:nth-child(1),
  .mosaic-image:nth-child(4) {
    min-height: 230px;
  }

  .hero-bottom {
    display: block;
    padding-bottom: 70px;
  }

  .hero-actions {
    margin: 22px 0 0;
  }

  .hero-actions .button.primary {
    min-width: 0;
    min-height: 74px;
  }

  .section {
    padding: 92px 0;
  }
}

  background: var(--white);
  font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.container.narrow {
  width: min(820px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(229, 234, 240, 0.8);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, transparent 42%, var(--blue) 43% 57%, transparent 58%),
    linear-gradient(45deg, transparent 42%, var(--cyan) 43% 57%, transparent 58%);
  border: 2px solid #dce8ff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 700;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  padding: 98px 0 86px;
  background:
    radial-gradient(circle at 75% 20%, rgba(6, 182, 212, 0.14), transparent 34%),
    linear-gradient(180deg, var(--white), var(--off));
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 6px 12px;
  color: var(--blue);
  background: #edf5ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.18;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.28;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.45;
}

.lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--gray);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--charcoal);
  font-weight: 800;
}

.hero-metric strong {
  color: var(--blue);
  font-size: 64px;
  line-height: 1;
}

.hero-collage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
  grid-auto-rows: 132px;
  gap: 14px;
}

.media-card,
.service-image,
.work-thumb,
.office-image {
  overflow: hidden;
  border: 1px solid rgba(229, 234, 240, 0.9);
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.media-card.large {
  grid-row: span 2;
}

.media-card.wide {
  grid-column: span 2;
}

.media-camera {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.12), rgba(37, 99, 235, 0.18)),
    url("https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=900&q=80");
}

.media-studio {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.12), rgba(6, 182, 212, 0.14)),
    url("https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=900&q=80");
}

.media-edit {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.1), rgba(37, 99, 235, 0.2)),
    url("https://images.unsplash.com/photo-1574717024653-61fd2cf4d44d?auto=format&fit=crop&w=900&q=80");
}

.media-photo {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(6, 182, 212, 0.16)),
    url("https://images.unsplash.com/photo-1502920917128-1aa500764cbd?auto=format&fit=crop&w=900&q=80");
}

.media-product {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(37, 99, 235, 0.14)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80");
}

.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: 28px 0;
}

.trust-inner p {
  min-width: 250px;
  margin: 0;
  color: var(--gray);
  font-size: 13px;
  font-weight: 700;
}

.client-logos {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #334155;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.section {
  padding: 118px 0;
}

.section.soft {
  background: var(--off);
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading.centered {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p {
  color: var(--gray);
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: end;
}

.card-grid {
  display: grid;
  gap: 28px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.price-card,
.voice-card,
.work-card,
.reason-grid article,
.faq-item,
.contact-form,
.contact-note,
.company-table {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.05);
}

.service-card {
  position: relative;
  padding: 0 0 30px;
  overflow: hidden;
}

.service-card h3,
.service-card p {
  padding-right: 28px;
  padding-left: 28px;
}

.service-card p,
.reason-grid p,
.price-card p,
.work-card p,
.voice-card p {
  color: var(--gray);
}

.service-image {
  height: 190px;
  margin-bottom: 34px;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: none;
}

.icon-badge {
  position: absolute;
  top: 154px;
  left: 26px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.reason-grid article {
  padding: 34px 28px;
}

.reason-icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 900;
}

.price-card {
  padding: 36px 30px;
  text-align: center;
}

.price-card.featured {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 24px 70px rgba(37, 99, 235, 0.13);
}

.price-card strong {
  display: block;
  margin: 30px 0 24px;
  font-size: 30px;
}

.price-card a,
.text-link {
  color: var(--blue);
  font-weight: 900;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.work-card {
  overflow: hidden;
}

.work-card-link {
  display: block;
  padding-bottom: 24px;
}

.work-thumb,
.work-thumb-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: none;
}

.work-card h3,
.work-card p,
.tag {
  margin-right: 22px;
  margin-left: 22px;
}

.tag {
  display: inline-flex;
  margin-top: 20px;
  margin-bottom: 14px;
  padding: 4px 10px;
  color: var(--blue);
  background: #edf5ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.flow-step {
  text-align: center;
}

.flow-step span {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  place-items: center;
  color: var(--blue);
  background: var(--off);
  border-radius: 50%;
  font-weight: 900;
}

.flow-step p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.voice-card {
  padding: 26px 22px;
}

.voice-card strong,
.voice-card span {
  display: block;
}

.voice-card strong {
  margin-top: 24px;
}

.voice-card span {
  color: var(--gray);
  font-size: 13px;
}

.faq-item {
  padding: 22px 26px;
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-item p {
  margin: 16px 0 0;
  color: var(--gray);
}

.company-summary {
  padding-top: 40px;
}

.company-grid,
.company-page-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
}

.office-image {
  min-height: 340px;
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(37, 99, 235, 0.12)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1200&q=80");
}

.final-cta {
  padding: 76px 0;
  background:
    radial-gradient(circle at 90% 50%, rgba(6, 182, 212, 0.2), transparent 32%),
    linear-gradient(135deg, #f4f8ff, #eaf6ff);
}

.final-cta.compact {
  margin-top: 40px;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.final-cta h2 {
  margin-bottom: 14px;
}

.final-cta p {
  margin-bottom: 0;
  color: var(--gray);
}

.site-footer {
  padding: 38px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--gray);
  font-size: 13px;
  font-weight: 800;
}

.copyright {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
}

.page-hero {
  padding: 104px 0 78px;
  background: linear-gradient(180deg, var(--off), var(--white));
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p:last-child {
  max-width: 700px;
  color: var(--gray);
}

.archive-grid {
  margin-top: 10px;
}

.detail-thumb img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
}

.content-body {
  color: var(--charcoal);
}

.content-body h2 {
  margin-top: 48px;
}

.detail-cta {
  margin-top: 70px;
  padding: 42px;
  background: var(--off);
  border-radius: var(--radius);
}

.company-table {
  padding: 10px 30px;
}

.company-table div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.company-table div:last-child {
  border-bottom: 0;
}

.company-table dt {
  color: var(--gray);
  font-weight: 800;
}

.company-table dd {
  margin: 0;
}

.contact-grid {
  align-items: start;
}

.contact-note {
  padding: 34px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
}

.pagination {
  margin-top: 48px;
}

@media (max-width: 980px) {
  .hero-grid,
  .section-heading.split,
  .company-grid,
  .company-page-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .reason-grid,
  .works-grid,
  .voice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero,
  .section,
  .page-hero {
    padding: 72px 0;
  }

  .hero-collage {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 110px;
  }

  .media-card.large,
  .media-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .card-grid.three,
  .reason-grid,
  .works-grid,
  .voice-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .trust-inner,
  .final-cta-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

/* Premium visual pass */
:root {
  --navy: #07111f;
  --charcoal: #263244;
  --gray: #64748b;
  --blue: #155eef;
  --cyan: #00a6d6;
  --line: #e7edf4;
  --off: #f6f8fb;
  --shadow: 0 30px 80px rgba(7, 17, 31, 0.1);
  --radius: 14px;
}

body {
  color: var(--navy);
  background: #fff;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

.site-header {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(231, 237, 244, 0.72);
  backdrop-filter: blur(24px);
}

.header-inner {
  min-height: 84px;
}

.brand {
  font-size: 21px;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  box-shadow: 0 12px 28px rgba(21, 94, 239, 0.18);
}

.site-nav {
  gap: 32px;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
}

.nav-cta,
.button.primary {
  background: linear-gradient(135deg, #1055e8 0%, #00acd7 100%);
  box-shadow: 0 18px 40px rgba(21, 94, 239, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.8);
  border-color: #dbe5ef;
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.06);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 130px 0 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 166, 214, 0.2), transparent 31%),
    radial-gradient(circle at 10% 0%, rgba(21, 94, 239, 0.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.hero::before {
  position: absolute;
  inset: 90px 0 auto auto;
  z-index: 0;
  width: 45vw;
  height: 520px;
  content: "";
  background: linear-gradient(135deg, rgba(21, 94, 239, 0.11), rgba(0, 166, 214, 0.11));
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 78%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
}

.eyebrow,
.section-kicker {
  padding: 8px 14px;
  color: #1457e6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #eef6ff;
  border: 1px solid #dcecff;
}

.hero h1 {
  margin-bottom: 30px;
  font-size: clamp(48px, 5.8vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.lead {
  max-width: 660px;
  margin-bottom: 38px;
  color: #445168;
  font-size: 18px;
  line-height: 2;
}

.hero-actions {
  gap: 16px;
  margin-bottom: 42px;
}

.hero-metric {
  width: max-content;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #e5edf6;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(7, 17, 31, 0.08);
}

.hero-metric strong {
  font-size: 72px;
  color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-collage {
  grid-template-columns: 1.15fr 0.9fr 0.72fr;
  grid-auto-rows: 150px;
  gap: 18px;
  transform: translateY(8px);
}

.media-card,
.service-image,
.work-thumb,
.office-image {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(7, 17, 31, 0.13);
}

.media-card.large {
  grid-row: span 3;
}

.media-card.wide {
  grid-column: span 2;
}

.media-card:nth-child(2),
.media-card:nth-child(4) {
  transform: translateY(28px);
}

.trust-strip {
  color: #fff;
  background: var(--navy);
  border: 0;
}

.trust-inner {
  padding: 34px 0;
}

.trust-inner p {
  color: #aebbd0;
}

.client-logos {
  color: #fff;
  opacity: 0.9;
}

.section {
  padding: 144px 0;
}

.section.soft {
  background: linear-gradient(180deg, #f7f9fc, #fff);
}

.section-heading {
  margin-bottom: 70px;
}

.section-heading.centered {
  max-width: 820px;
}

.section-heading.split {
  gap: 84px;
  align-items: center;
}

.section-heading p {
  font-size: 16px;
  line-height: 2;
}

.section h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.card-grid {
  gap: 32px;
}

.service-card,
.price-card,
.voice-card,
.work-card,
.reason-grid article,
.faq-item,
.contact-form,
.contact-note,
.company-table {
  background: rgba(255, 255, 255, 0.92);
  border-color: #e8eef5;
  border-radius: 18px;
  box-shadow: 0 20px 58px rgba(7, 17, 31, 0.06);
}

.service-card,
.work-card,
.price-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.work-card:hover,
.price-card:hover {
  box-shadow: 0 30px 80px rgba(7, 17, 31, 0.11);
  transform: translateY(-5px);
}

.service-image {
  height: 230px;
  margin-bottom: 42px;
  border-radius: 18px 18px 0 0;
}

.icon-badge {
  top: 188px;
  left: 28px;
  width: auto;
  height: 42px;
  padding: 0 18px;
  color: #fff;
  letter-spacing: 0.08em;
  background: var(--navy);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(7, 17, 31, 0.22);
}

.service-card h3,
.service-card p {
  padding-right: 32px;
  padding-left: 32px;
}

.service-card h3 {
  font-size: 24px;
}

.reason-grid {
  gap: 24px;
}

.reason-grid article {
  position: relative;
  padding: 42px 30px;
  overflow: hidden;
}

.reason-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.reason-icon {
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: 0.16em;
}

.price-card {
  padding: 44px 34px;
  text-align: left;
}

.price-card.featured {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 34px 90px rgba(7, 17, 31, 0.24);
}

.price-card.featured p {
  color: #c9d3e3;
}

.price-card strong {
  font-size: 34px;
}

.works-grid {
  gap: 30px;
}

.work-thumb,
.work-thumb-img {
  height: 230px;
  border-radius: 18px 18px 0 0;
}

.tag {
  color: #1457e6;
  background: #eef6ff;
  border: 1px solid #dcecff;
}

.flow-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.06);
}

.flow-step {
  padding: 32px 18px;
  background: #fff;
  border-right: 1px solid #e8eef5;
}

.flow-step:last-child {
  border-right: 0;
}

.flow-step span {
  color: #fff;
  background: var(--navy);
}

.voice-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.voice-card {
  padding: 32px 24px;
}

.voice-card p::before {
  display: block;
  color: var(--cyan);
  font-size: 42px;
  line-height: 1;
  content: "“";
}

.final-cta {
  padding: 94px 0;
  color: #fff;
  background:
    radial-gradient(circle at 88% 50%, rgba(0, 166, 214, 0.32), transparent 28%),
    linear-gradient(135deg, #07111f, #10233d);
}

.final-cta p {
  color: #c7d2e2;
}

.final-cta .button.primary {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.site-footer {
  color: #fff;
  background: var(--navy);
  border-top: 0;
}

.footer-nav,
.copyright {
  color: #aebbd0;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 96px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    grid-auto-rows: 130px;
  }

  .flow-step {
    border-bottom: 1px solid #e8eef5;
  }

  .site-nav {
    top: 84px;
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .page-hero {
    padding: 76px 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 16px;
  }
}
:root {
  --white: #fff;
  --off: #f7f9fb;
  --pale: #eff5fa;
  --navy: #0f172a;
  --charcoal: #1f2937;
  --gray: #64748b;
  --line: #e5eaf0;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.container.narrow {
  width: min(820px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(229, 234, 240, 0.8);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, transparent 42%, var(--blue) 43% 57%, transparent 58%),
    linear-gradient(45deg, transparent 42%, var(--cyan) 43% 57%, transparent 58%);
  border: 2px solid #dce8ff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 700;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  padding: 98px 0 86px;
  background:
    radial-gradient(circle at 75% 20%, rgba(6, 182, 212, 0.14), transparent 34%),
    linear-gradient(180deg, var(--white), var(--off));
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 6px 12px;
  color: var(--blue);
  background: #edf5ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.18;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.28;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.45;
}

.lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--gray);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--charcoal);
  font-weight: 800;
}

.hero-metric strong {
  color: var(--blue);
  font-size: 64px;
  line-height: 1;
}

.hero-collage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
  grid-auto-rows: 132px;
  gap: 14px;
}

.media-card,
.service-image,
.work-thumb,
.office-image {
  overflow: hidden;
  border: 1px solid rgba(229, 234, 240, 0.9);
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.media-card.large {
  grid-row: span 2;
}

.media-card.wide {
  grid-column: span 2;
}

.media-camera {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.12), rgba(37, 99, 235, 0.18)),
    url("https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=900&q=80");
}

.media-studio {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.12), rgba(6, 182, 212, 0.14)),
    url("https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=900&q=80");
}

.media-edit {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.1), rgba(37, 99, 235, 0.2)),
    url("https://images.unsplash.com/photo-1574717024653-61fd2cf4d44d?auto=format&fit=crop&w=900&q=80");
}

.media-photo {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(6, 182, 212, 0.16)),
    url("https://images.unsplash.com/photo-1502920917128-1aa500764cbd?auto=format&fit=crop&w=900&q=80");
}

.media-product {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(37, 99, 235, 0.14)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80");
}

.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: 28px 0;
}

.trust-inner p {
  min-width: 250px;
  margin: 0;
  color: var(--gray);
  font-size: 13px;
  font-weight: 700;
}

.client-logos {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #334155;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.section {
  padding: 118px 0;
}

.section.soft {
  background: var(--off);
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading.centered {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p {
  color: var(--gray);
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: end;
}

.card-grid {
  display: grid;
  gap: 28px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.price-card,
.voice-card,
.work-card,
.reason-grid article,
.faq-item,
.contact-form,
.contact-note,
.company-table {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.05);
}

.service-card {
  position: relative;
  padding: 0 0 30px;
  overflow: hidden;
}

.service-card h3,
.service-card p {
  padding-right: 28px;
  padding-left: 28px;
}

.service-card p,
.reason-grid p,
.price-card p,
.work-card p,
.voice-card p {
  color: var(--gray);
}

.service-image {
  height: 190px;
  margin-bottom: 34px;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: none;
}

.icon-badge {
  position: absolute;
  top: 154px;
  left: 26px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.reason-grid article {
  padding: 34px 28px;
}

.reason-icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 900;
}

.price-card {
  padding: 36px 30px;
  text-align: center;
}

.price-card.featured {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 24px 70px rgba(37, 99, 235, 0.13);
}

.price-card strong {
  display: block;
  margin: 30px 0 24px;
  font-size: 30px;
}

.price-card a,
.text-link {
  color: var(--blue);
  font-weight: 900;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.work-card {
  overflow: hidden;
}

.work-card-link {
  display: block;
  padding-bottom: 24px;
}

.work-thumb,
.work-thumb-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: none;
}

.work-card h3,
.work-card p,
.tag {
  margin-right: 22px;
  margin-left: 22px;
}

.tag {
  display: inline-flex;
  margin-top: 20px;
  margin-bottom: 14px;
  padding: 4px 10px;
  color: var(--blue);
  background: #edf5ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.flow-step {
  text-align: center;
}

.flow-step span {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  place-items: center;
  color: var(--blue);
  background: var(--off);
  border-radius: 50%;
  font-weight: 900;
}

.flow-step p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.voice-card {
  padding: 26px 22px;
}

.voice-card strong,
.voice-card span {
  display: block;
}

.voice-card strong {
  margin-top: 24px;
}

.voice-card span {
  color: var(--gray);
  font-size: 13px;
}

.faq-item {
  padding: 22px 26px;
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-item p {
  margin: 16px 0 0;
  color: var(--gray);
}

.company-summary {
  padding-top: 40px;
}

.company-grid,
.company-page-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
}

.office-image {
  min-height: 340px;
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(37, 99, 235, 0.12)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1200&q=80");
}

.final-cta {
  padding: 76px 0;
  background:
    radial-gradient(circle at 90% 50%, rgba(6, 182, 212, 0.2), transparent 32%),
    linear-gradient(135deg, #f4f8ff, #eaf6ff);
}

.final-cta.compact {
  margin-top: 40px;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.final-cta h2 {
  margin-bottom: 14px;
}

.final-cta p {
  margin-bottom: 0;
  color: var(--gray);
}

.site-footer {
  padding: 38px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--gray);
  font-size: 13px;
  font-weight: 800;
}

.copyright {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
}

.page-hero {
  padding: 104px 0 78px;
  background: linear-gradient(180deg, var(--off), var(--white));
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p:last-child {
  max-width: 700px;
  color: var(--gray);
}

.archive-grid {
  margin-top: 10px;
}

.detail-thumb img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
}

.content-body {
  color: var(--charcoal);
}

.content-body h2 {
  margin-top: 48px;
}

.detail-cta {
  margin-top: 70px;
  padding: 42px;
  background: var(--off);
  border-radius: var(--radius);
}

.company-table {
  padding: 10px 30px;
}

.company-table div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.company-table div:last-child {
  border-bottom: 0;
}

.company-table dt {
  color: var(--gray);
  font-weight: 800;
}

.company-table dd {
  margin: 0;
}

.contact-grid {
  align-items: start;
}

.contact-note {
  padding: 34px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
}

.pagination {
  margin-top: 48px;
}

@media (max-width: 980px) {
  .hero-grid,
  .section-heading.split,
  .company-grid,
  .company-page-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .reason-grid,
  .works-grid,
  .voice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero,
  .section,
  .page-hero {
    padding: 72px 0;
  }

  .hero-collage {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 110px;
  }

  .media-card.large,
  .media-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .card-grid.three,
  .reason-grid,
  .works-grid,
  .voice-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .trust-inner,
  .final-cta-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
