:root {
  --cn-navy: #101519;
  --cn-navy-deep: #0c1116;
  --cn-card: #171d24;
  --cn-img-bg: #1a2029;
  --cn-orange: #ee8b1f;
  --cn-orange-hover: #d97d15;
  --cn-bg: #f4f3ef;
  --cn-bg-2: #e9e7e1;
  --cn-line: #e4e2db;
  --cn-line-2: #cdd2d8;
  --cn-line-dark: rgba(255, 255, 255, 0.1);
  --cn-muted: #4a525b;
  --cn-muted-2: #5c646d;
  --cn-muted-3: #3a4048;
  --cn-muted-dark-1: #c3cad1;
  --cn-muted-dark-2: #aab2bb;
  --cn-muted-dark-3: #9aa3ad;
  --cn-muted-dark-4: #8a9199;
  --cn-display: "Oswald", sans-serif;
  --cn-heading: "Zen Kaku Gothic New", sans-serif;
  --cn-sans: "Noto Sans JP", sans-serif;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--cn-sans);
  color: var(--cn-muted);
  background: var(--cn-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

/* Disclaimer banner */
.cn-banner {
  background: var(--cn-navy-deep);
  color: #cbd2d8;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 9px 16px;
}
.cn-banner a {
  font-weight: 700;
  text-decoration: underline;
  color: #fff;
}

/* Topbar */
.cn-topbar {
  background: var(--cn-navy-deep);
  color: var(--cn-muted-dark-2);
}
.cn-topbar-in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 9px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.03em;
}
.cn-topbar-right {
  display: flex;
  gap: 22px;
}
.cn-topbar-right .tel {
  color: #fff;
}

/* Header */
.cn-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--cn-navy);
  border-bottom: 2px solid var(--cn-orange);
}
.cn-header-in {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cn-logo {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: #fff;
}
.cn-logo .en {
  font-family: var(--cn-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.04em;
}
.cn-logo .en .dot {
  color: var(--cn-orange);
}
.cn-logo .jp {
  font-family: var(--cn-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.14em;
}
.cn-header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.cn-nav {
  display: flex;
  gap: 22px;
  font-size: 13px;
  font-weight: 500;
  color: #d5dade;
}
.cn-nav a:hover {
  color: var(--cn-orange);
}
.cn-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--cn-orange);
  color: var(--cn-navy);
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 4px;
  font-size: 13px;
  transition: background 0.2s ease;
}
.cn-cta:hover {
  background: var(--cn-orange-hover);
}
.cn-line-ico {
  width: 17px;
  height: 17px;
  border-radius: 4px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cn-line-ico img {
  width: 100%;
  height: 100%;
}
.cn-mobile-cta {
  display: none;
}
.cn-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 22px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
}
.cn-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
}

/* Hero */
.cn-hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--cn-navy-deep);
}
.cn-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: cnKb 18s ease-in-out infinite alternate;
}
.cn-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(12, 17, 22, 0.92) 0%,
    rgba(12, 17, 22, 0.75) 42%,
    rgba(12, 17, 22, 0.35) 100%
  );
}
.cn-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 64px;
  max-width: 760px;
}
.cn-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.cn-eyebrow .bar {
  width: 44px;
  height: 3px;
  background: var(--cn-orange);
  flex: 0 0 auto;
}
.cn-eyebrow span:last-child {
  font-family: var(--cn-display);
  font-weight: 500;
  letter-spacing: 0.28em;
  font-size: 14px;
  color: var(--cn-orange);
}
.cn-hero h1 {
  margin: 0;
  font-family: var(--cn-heading);
  font-weight: 900;
  font-size: 56px;
  line-height: 1.32;
  letter-spacing: 0.02em;
  color: #fff;
}
.cn-hero h1 .accent {
  color: var(--cn-orange);
}
.cn-hero-lead {
  margin: 26px 0 38px;
  font-size: 15px;
  line-height: 2;
  color: var(--cn-muted-dark-1);
  max-width: 520px;
}
.cn-hero-cta {
  display: flex;
  gap: 14px;
}
@keyframes cnKb {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* Buttons */
.cn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--cn-sans);
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.cn-btn-solid {
  background: var(--cn-orange);
  color: var(--cn-navy);
  font-weight: 700;
}
.cn-btn-solid:hover {
  background: var(--cn-orange-hover);
}
.cn-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 500;
  padding: 16px 28px;
}

/* Sections */
.cn-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}
.cn-section {
  padding: 96px 0;
}
.cn-section-dark {
  background: var(--cn-navy);
  color: #fff;
}
.cn-section-alt {
  background: var(--cn-bg-2);
}
.cn-kicker {
  margin-bottom: 44px;
}
.cn-kicker-center {
  text-align: center;
  margin-bottom: 56px;
}
.cn-kicker .en {
  font-family: var(--cn-display);
  font-weight: 500;
  letter-spacing: 0.22em;
  font-size: 14px;
  color: var(--cn-orange);
}
.cn-kicker h2 {
  margin: 12px 0 0;
  font-family: var(--cn-heading);
  font-weight: 900;
  font-size: 34px;
  letter-spacing: 0.02em;
  color: #101519;
}
.cn-section-dark .cn-kicker h2 {
  color: #fff;
}

/* Page intro band (sub pages) */
.cn-page-intro {
  background: var(--cn-navy);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.cn-page-intro .en {
  font-family: var(--cn-display);
  font-weight: 500;
  letter-spacing: 0.24em;
  font-size: 14px;
  color: var(--cn-orange);
}
.cn-page-intro h1 {
  margin: 14px 0 0;
  font-family: var(--cn-heading);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 0.02em;
}
.cn-page-intro p {
  margin: 16px auto 0;
  max-width: 560px;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--cn-muted-dark-1);
}

/* Stats */
.cn-stats {
  background: var(--cn-navy);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cn-stat {
  padding: 38px 20px;
  text-align: center;
  border-right: 1px solid var(--cn-line-dark);
}
.cn-stat:last-child {
  border-right: none;
}
.cn-stat-num {
  font-family: var(--cn-display);
  font-weight: 600;
  font-size: 52px;
  color: #fff;
  line-height: 1;
}
.cn-stat:first-child .cn-stat-num {
  color: var(--cn-orange);
}
.cn-stat-num small {
  font-size: 24px;
}
.cn-stat-label {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--cn-muted-dark-2);
  letter-spacing: 0.05em;
}

/* About */
.cn-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.cn-about-media {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--cn-img-bg);
}
.cn-about-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cn-about-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: var(--cn-orange);
  color: var(--cn-navy);
  padding: 16px 22px;
}
.cn-about-badge .num {
  font-family: var(--cn-display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
}
.cn-about-badge .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.cn-about-text .en {
  font-family: var(--cn-display);
  font-weight: 500;
  letter-spacing: 0.22em;
  font-size: 14px;
  color: var(--cn-orange);
}
.cn-about-text h2 {
  margin: 14px 0 22px;
  font-family: var(--cn-heading);
  font-weight: 900;
  font-size: 34px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #101519;
}
.cn-about-text p {
  margin: 0 0 20px;
  font-size: 14.5px;
  line-height: 2.1;
  color: var(--cn-muted);
}
.cn-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cn-tag {
  border: 1px solid var(--cn-line-2);
  padding: 9px 16px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  color: #101519;
}

/* Services */
.cn-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cn-service-card {
  background: var(--cn-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  overflow: hidden;
}
.cn-service-img {
  position: relative;
  height: 150px;
  background: #1f2731;
  overflow: hidden;
}
.cn-service-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cn-service-body {
  padding: 22px 20px;
}
.cn-service-num {
  font-family: var(--cn-display);
  color: var(--cn-orange);
  font-size: 13px;
  letter-spacing: 0.1em;
}
.cn-service-body h3 {
  margin: 6px 0 10px;
  font-family: var(--cn-heading);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.cn-service-body p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--cn-muted-dark-3);
}

/* Works */
.cn-works-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
}
.cn-works-more {
  font-size: 13px;
  font-weight: 700;
  color: #101519;
  border-bottom: 2px solid var(--cn-orange);
  padding-bottom: 3px;
}
.cn-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}
.cn-gitem {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--cn-img-bg);
}
.cn-gitem img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cn-gitem.wide {
  grid-column: span 2;
  grid-row: span 2;
}
.cn-gtag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  background: rgba(16, 21, 25, 0.75);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
}
.cn-gitem.wide .cn-gtag {
  background: var(--cn-orange);
  color: var(--cn-navy);
}
.cn-gcap {
  margin-top: 8px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

/* Reasons + flow */
.cn-reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.cn-reason {
  background: #fff;
  border-top: 3px solid var(--cn-orange);
  padding: 32px 28px;
}
.cn-reason .num {
  font-family: var(--cn-display);
  font-weight: 600;
  font-size: 36px;
  color: #101519;
  line-height: 1;
}
.cn-reason h3 {
  margin: 16px 0 10px;
  font-family: var(--cn-heading);
  font-weight: 700;
  font-size: 19px;
  color: #101519;
}
.cn-reason p {
  margin: 0;
  font-size: 13px;
  line-height: 1.95;
  color: var(--cn-muted-2);
}
.cn-flow-label {
  font-family: var(--cn-display);
  font-weight: 500;
  letter-spacing: 0.22em;
  font-size: 13px;
  color: #101519;
  margin-bottom: 28px;
  display: block;
}
.cn-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.cn-step {
  background: var(--cn-navy);
  color: #fff;
  padding: 22px 18px;
  border-radius: 5px;
}
.cn-step.done {
  background: var(--cn-orange);
  color: var(--cn-navy);
}
.cn-step .step-num {
  font-family: var(--cn-display);
  color: var(--cn-orange);
  font-size: 13px;
}
.cn-step.done .step-num {
  color: var(--cn-navy);
  font-weight: 600;
}
.cn-step h4 {
  margin: 8px 0 0;
  font-family: var(--cn-heading);
  font-weight: 700;
  font-size: 14.5px;
}
.cn-step.done h4 {
  font-weight: 900;
}

/* Testimonials */
.cn-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cn-testimonial {
  background: #fff;
  border: 1px solid var(--cn-line);
  border-radius: 6px;
  padding: 30px 26px;
}
.cn-quote {
  font-family: var(--cn-display);
  font-size: 40px;
  color: var(--cn-orange);
  line-height: 0.7;
}
.cn-testimonial p {
  margin: 10px 0 20px;
  font-size: 13.5px;
  line-height: 2;
  color: var(--cn-muted-3);
}
.cn-t-foot {
  border-top: 1px solid #eceae4;
  padding-top: 14px;
  font-size: 12px;
  color: var(--cn-muted-dark-4);
}

/* Company info + contact */
.cn-company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cn-navy);
  color: #fff;
}
.cn-company-info,
.cn-contact-panel {
  padding: 80px 56px;
}
.cn-contact-panel {
  background: var(--cn-card);
}
.cn-company-info .en,
.cn-contact-panel .en {
  font-family: var(--cn-display);
  font-weight: 500;
  letter-spacing: 0.22em;
  font-size: 14px;
  color: var(--cn-orange);
}
.cn-company-info h2 {
  margin: 12px 0 30px;
  font-family: var(--cn-heading);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 0.02em;
}
.cn-contact-panel h2 {
  margin: 12px 0 8px;
  font-family: var(--cn-heading);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 0.02em;
}
.cn-contact-panel > p {
  margin: 0 0 28px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--cn-muted-dark-3);
}
.cn-info-list {
  display: flex;
  flex-direction: column;
}
.cn-info-row {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid var(--cn-line-dark);
  font-size: 13.5px;
}
.cn-info-row:last-child {
  border-bottom: none;
}
.cn-info-row .label {
  width: 120px;
  color: var(--cn-muted-dark-4);
  flex-shrink: 0;
}
.cn-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cn-form input,
.cn-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--cn-navy);
  border-radius: 4px;
  padding: 14px 15px;
  font-size: 15px;
  font-family: inherit;
  color: #fff;
}
.cn-form textarea {
  resize: none;
}
.cn-submit {
  border: none;
  background: var(--cn-orange);
  color: var(--cn-navy);
  font-weight: 700;
  padding: 16px;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease;
}
.cn-submit:hover {
  background: var(--cn-orange-hover);
}
.cn-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  padding: 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

/* Footer */
.cn-footer {
  background: var(--cn-navy-deep);
  color: var(--cn-muted-dark-4);
  padding: 44px 0;
}
.cn-footer-in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cn-footer-logo {
  font-family: var(--cn-display);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.04em;
}
.cn-footer-name {
  font-size: 11px;
  letter-spacing: 0.06em;
  margin-left: 8px;
}
.cn-footer-cp {
  font-size: 11px;
  letter-spacing: 0.06em;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1s cubic-bezier(0.16, 0.8, 0.3, 1),
    transform 1s cubic-bezier(0.16, 0.8, 0.3, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.cn-reasons .reveal:nth-child(2) {
  transition-delay: 0.12s;
}
.cn-reasons .reveal:nth-child(3) {
  transition-delay: 0.24s;
}
.cn-services .reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.cn-services .reveal:nth-child(3) {
  transition-delay: 0.2s;
}
.cn-services .reveal:nth-child(4) {
  transition-delay: 0.3s;
}
.cn-testimonials .reveal:nth-child(2) {
  transition-delay: 0.12s;
}
.cn-testimonials .reveal:nth-child(3) {
  transition-delay: 0.24s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .cn-hero-bg {
    animation: none;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 760px) {
  .cn-banner {
    font-size: 11px;
    padding: 8px 14px;
  }

  .cn-topbar {
    display: none;
  }

  .cn-header-in {
    padding: 15px 20px;
  }
  .cn-logo .jp {
    display: none;
  }
  .cn-logo .en {
    font-size: 20px;
  }
  .cn-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cn-navy);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 20px 18px;
    border-bottom: 2px solid var(--cn-orange);
    box-shadow: 0 16px 24px -18px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
    z-index: 30;
  }
  .cn-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .cn-nav a {
    padding: 11px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
  }
  .cn-nav a:last-of-type {
    border-bottom: none;
  }
  .cn-cta {
    display: none;
  }
  .cn-mobile-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cn-orange);
    color: var(--cn-navy);
    font-weight: 700;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 4px;
  }
  .cn-header-right {
    gap: 10px;
  }
  .cn-toggle {
    display: flex;
  }

  .cn-hero {
    height: 520px;
  }
  .cn-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(12, 17, 22, 0.6),
      rgba(12, 17, 22, 0.45) 40%,
      rgba(12, 17, 22, 0.92)
    );
  }
  .cn-hero-content {
    justify-content: flex-end;
    padding: 0 24px 40px;
    max-width: none;
  }
  .cn-eyebrow {
    margin-bottom: 18px;
  }
  .cn-eyebrow .bar {
    width: 32px;
  }
  .cn-eyebrow span:last-child {
    font-size: 12px;
  }
  .cn-hero h1 {
    font-size: 33px;
    line-height: 1.36;
  }
  .cn-hero-lead {
    margin: 16px 0 24px;
    font-size: 13px;
    line-height: 1.95;
    max-width: none;
  }
  .cn-hero-cta a.cn-btn-outline {
    display: none;
  }
  .cn-hero-cta .cn-btn {
    width: 100%;
  }

  .cn-wrap {
    padding: 0 22px;
  }
  .cn-section {
    padding: 42px 0;
  }
  .cn-kicker,
  .cn-kicker-center {
    text-align: center;
    margin-bottom: 26px;
  }
  .cn-kicker h2 {
    margin: 8px 0 0;
    font-size: 23px;
  }

  .cn-page-intro {
    padding: 44px 0;
  }
  .cn-page-intro h1 {
    font-size: 25px;
  }

  .cn-stats {
    grid-template-columns: 1fr 1fr;
  }
  .cn-stat {
    padding: 26px 16px;
    border-bottom: 1px solid var(--cn-line-dark);
  }
  .cn-stat:nth-child(odd) {
    border-right: 1px solid var(--cn-line-dark);
  }
  .cn-stat:nth-child(2) {
    border-right: none;
  }
  .cn-stat:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .cn-stat-num {
    font-size: 38px;
  }
  .cn-stat-num small {
    font-size: 18px;
  }

  .cn-about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cn-about-media {
    height: 200px;
  }
  .cn-about-badge {
    display: none;
  }
  .cn-about-text h2 {
    font-size: 24px;
  }

  .cn-services {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .cn-service-img {
    height: 90px;
  }
  .cn-service-body {
    padding: 14px;
  }
  .cn-service-num {
    display: none;
  }
  .cn-service-body h3 {
    margin: 0 0 4px;
    font-size: 15px;
  }
  .cn-service-body p {
    font-size: 11px;
    line-height: 1.7;
  }

  .cn-works-more {
    display: none;
  }
  .cn-gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin: 0 -22px;
    padding: 0 22px 4px;
  }
  .cn-gallery::-webkit-scrollbar {
    display: none;
  }
  .cn-gitem {
    flex: 0 0 240px;
    height: 270px;
  }
  .cn-gitem.wide {
    grid-column: auto;
    grid-row: auto;
  }
  .cn-gcap {
    display: none;
  }

  .cn-reasons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 34px;
  }
  .cn-reason {
    border-top: none;
    border-left: 3px solid var(--cn-orange);
    padding: 18px 18px;
  }
  .cn-reason-head {
    display: flex;
    align-items: baseline;
    gap: 10px;
  }
  .cn-reason .num {
    font-size: 22px;
  }
  .cn-reason h3 {
    margin: 0;
    font-size: 16px;
  }
  .cn-reason p {
    margin: 8px 0 0;
    font-size: 12px;
    line-height: 1.85;
  }
  .cn-flow-label {
    font-size: 11px;
    margin-bottom: 14px;
  }
  .cn-flow {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .cn-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
  }
  .cn-step h4 {
    margin: 0;
    font-size: 13.5px;
  }

  .cn-testimonials {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .cn-testimonial {
    padding: 22px 20px;
  }
  .cn-quote {
    display: none;
  }
  .cn-testimonial p {
    margin: 0 0 14px;
    font-size: 12.5px;
    line-height: 1.95;
  }
  .cn-testimonial:nth-child(3) {
    display: none;
  }

  .cn-company-grid {
    display: block;
  }
  .cn-company-info,
  .cn-contact-panel {
    padding: 42px 22px;
  }
  .cn-company-info h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .cn-info-row {
    padding: 11px 0;
    font-size: 12.5px;
  }
  .cn-info-row .label {
    width: 88px;
  }
  .cn-info-row.area {
    display: none;
  }
  .cn-contact-panel {
    border-radius: 8px;
    margin: 0 22px 42px;
    padding: 26px 22px;
  }
  .cn-contact-panel h2 {
    font-size: 20px;
  }
  .cn-field-message {
    display: none;
  }
}
