:root {
  --navy: #073b7a;
  --navy-deep: #052956;
  --pink: #f5267f;
  --pink-dark: #d90b64;
  --pink-soft: #fff0f6;
  --yellow: #ffd21c;
  --yellow-soft: #fff8cf;
  --ink: #202231;
  --muted: #666978;
  --paper: #fffdfd;
  --line: #e7e3ea;
  --shadow: 0 22px 60px rgba(31, 31, 55, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

.section-pad {
  padding: 112px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 253, 0.94);
  border-bottom: 1px solid rgba(7, 59, 122, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 14px 5px 14px 5px;
  color: white;
  background: linear-gradient(140deg, var(--pink), var(--pink-dark));
  box-shadow: 0 7px 18px rgba(245, 38, 127, 0.28);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.15rem;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
}

nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

nav a {
  color: #494b58;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

nav a:hover {
  color: var(--pink);
}

nav .nav-contact {
  padding: 10px 19px;
  color: white;
  background: var(--navy);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 16%, rgba(255, 210, 28, 0.26) 0 11%, transparent 11.4%),
    linear-gradient(124deg, #fff 0%, #fff7fb 49%, #fff2f8 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: 0;
  width: 46%;
  height: 16px;
  background: var(--pink);
  transform: skewX(-25deg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  min-height: 700px;
  margin-inline: auto;
  padding: 85px 0 90px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-shape-one {
  top: 34px;
  left: -105px;
  width: 270px;
  height: 270px;
  border: 45px solid rgba(245, 38, 127, 0.09);
}

.hero-shape-two {
  right: 29%;
  bottom: 60px;
  width: 82px;
  height: 82px;
  background-image: radial-gradient(var(--pink) 2px, transparent 2px);
  background-size: 13px 13px;
  opacity: 0.24;
}

.eyebrow {
  margin: 0 0 21px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.13em;
}

.eyebrow span {
  width: 28px;
  height: 4px;
  background: var(--pink);
  border-radius: 999px;
}

.hero h1,
.section-heading h2,
.profile-content h2,
.contact h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.hero h1 {
  max-width: 710px;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2.6rem, 4.5vw, 4.15rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.05em;
}

.hero-line {
  display: block;
}

.hero-line-intro {
  white-space: nowrap;
}

.hero h1 em {
  position: relative;
  z-index: 1;
  color: var(--pink);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -3%;
  right: -3%;
  bottom: 4px;
  height: 17px;
  background: var(--yellow);
  border-radius: 60% 38% 56% 35%;
  transform: rotate(-1deg);
}

.hero-lead {
  margin: 30px 0 0;
  color: #555765;
  font-size: 1.08rem;
  font-weight: 500;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 56px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(120deg, var(--pink), #ff4c98);
  box-shadow: 0 14px 32px rgba(245, 38, 127, 0.27);
}

.button-secondary {
  color: var(--navy);
  background: white;
  border: 2px solid rgba(7, 59, 122, 0.18);
}

.hero-points {
  margin: 42px 0 0;
  padding: 0;
  display: flex;
  list-style: none;
}

.hero-points li {
  min-width: 116px;
  padding: 0 20px;
  border-left: 1px solid var(--line);
}

.hero-points li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points strong {
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1.2;
}

.hero-points span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.77rem;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 500px);
  aspect-ratio: 1 / 1;
}

.portrait-ring {
  position: absolute;
  inset: 7% 5% 3% 9%;
  padding: 15px;
  border-radius: 45% 55% 48% 52% / 55% 43% 57% 45%;
  background: white;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.portrait-ring::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -20px 17px 28px -22px;
  border-radius: inherit;
  background: linear-gradient(145deg, var(--pink), #ff88b9 63%, var(--yellow));
}

.portrait-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.floating-card {
  position: absolute;
  z-index: 4;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 17px;
  box-shadow: 0 14px 36px rgba(21, 35, 66, 0.16);
  font-size: 0.85rem;
}

.floating-card-top {
  top: 8%;
  right: -3%;
}

.floating-card-bottom {
  left: -2%;
  bottom: 6%;
}

.mini-chart {
  height: 28px;
  display: flex;
  align-items: end;
  gap: 3px;
}

.mini-chart i {
  width: 6px;
  border-radius: 4px 4px 0 0;
  background: var(--pink);
}

.mini-chart i:nth-child(1) { height: 12px; }
.mini-chart i:nth-child(2) { height: 20px; background: var(--yellow); }
.mini-chart i:nth-child(3) { height: 27px; background: var(--navy); }

.check {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  font-weight: 900;
}

.spark {
  position: absolute;
  z-index: 5;
  color: var(--yellow);
  filter: drop-shadow(0 4px 3px rgba(255, 176, 0, 0.24));
}

.spark-one { top: 4%; left: 3%; font-size: 2.2rem; }
.spark-two { right: 0; bottom: 20%; font-size: 1.4rem; }

.intro {
  background: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
}

.section-kicker {
  margin: 0 0 15px;
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.section-heading h2,
.profile-content h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2.15rem, 4.2vw, 3.7rem);
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.section-heading h2 span {
  position: relative;
  color: var(--pink);
}

.section-heading h2 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -2%;
  right: -2%;
  bottom: 1px;
  height: 12px;
  background: var(--yellow);
}

.intro-copy {
  padding-top: 14px;
}

.intro-copy p {
  margin: 0 0 21px;
  color: #4f515e;
  font-size: 1.03rem;
}

.visual-story {
  padding: 0 0 112px;
  background: white;
}

.visual-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 41, 86, 0.91) 0%, rgba(5, 41, 86, 0.68) 34%, rgba(5, 41, 86, 0.03) 70%);
}

.visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-caption {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 86px 70px;
  color: white;
}

.visual-caption p {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.visual-caption h2 {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.38;
}

.services {
  background:
    radial-gradient(circle at 4% 9%, rgba(245, 38, 127, 0.08) 0 8%, transparent 8.3%),
    #f7f8fc;
}

.section-heading.centered {
  max-width: 720px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading.centered > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 39px 32px 32px;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid rgba(7, 59, 122, 0.08);
  border-radius: 24px;
  box-shadow: 0 15px 38px rgba(31, 38, 62, 0.07);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--pink);
}

.service-main::before { background: linear-gradient(90deg, var(--pink), var(--yellow)); }
.service-tiktok::before { background: linear-gradient(90deg, var(--navy), #3f79ca); }

.service-number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(7, 59, 122, 0.07);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
}

.service-label {
  position: relative;
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.service-tiktok .service-label { color: var(--navy); }

.service-card h3 {
  position: relative;
  min-height: 74px;
  margin: 0 0 17px;
  color: var(--navy-deep);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.62rem;
  line-height: 1.45;
}

.service-card > p:not(.service-label, .price-note) {
  min-height: 116px;
  margin: 0;
  color: #5b5e6d;
  font-size: 0.93rem;
}

.service-card ul {
  margin: 24px 0 28px;
  padding: 22px 0 22px 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #454754;
  font-size: 0.88rem;
}

.service-card li + li {
  margin-top: 7px;
}

.price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--navy-deep);
}

.price span {
  font-size: 0.8rem;
  font-weight: 700;
}

.price strong {
  color: var(--pink);
  font-size: 2rem;
  line-height: 1;
}

.price-note {
  min-height: 42px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.option-box {
  margin-top: 25px;
  padding: 34px 38px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
  color: white;
  background: var(--navy-deep);
  border-radius: 24px;
}

.option-label {
  margin: 0 0 5px;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.option-box h3 {
  margin: 0;
  font-size: 1.45rem;
}

.option-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.option-box li {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.88rem;
}

.option-box li:last-child { border-bottom: 0; }

.strengths {
  background: white;
}

.strengths .shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
  align-items: start;
}

.strengths-title {
  position: sticky;
  top: 130px;
}

.strength-list article {
  padding: 31px 0;
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 25px;
  border-bottom: 1px solid var(--line);
}

.strength-list article:first-child { padding-top: 0; }

.strength-list article > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 900;
}

.strength-list h3 {
  margin: 0 0 8px;
  color: var(--navy-deep);
  font-size: 1.35rem;
}

.strength-list p {
  margin: 0;
  color: var(--muted);
}

.profile {
  background: var(--pink-soft);
}

.profile-card {
  padding: 34px;
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 54px;
  align-items: center;
  background: white;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.profile-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--pink-soft);
  border: 10px solid white;
  border-radius: 28px;
  box-shadow: 0 16px 38px rgba(31, 38, 62, 0.14);
}

.profile-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.profile-name {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 15px 18px;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 59, 122, 0.08);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.profile-name span,
.profile-name strong {
  display: block;
}

.profile-name span {
  color: var(--pink-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.profile-name strong {
  margin-top: 3px;
  font-size: 1.4rem;
}

.profile-content {
  padding: 34px 32px 34px 0;
}

.profile-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.profile-content > p:not(.section-kicker) {
  margin: 23px 0 0;
  color: var(--muted);
}

.credentials {
  margin: 35px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.credentials div {
  padding: 20px 14px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.credentials div:first-child { border-left: 0; }

.credentials span,
.credentials strong {
  display: block;
}

.credentials span {
  color: var(--muted);
  font-size: 0.72rem;
}

.credentials strong {
  margin-top: 4px;
  color: var(--navy);
  font-size: 1rem;
}

.industries h3 {
  margin: 0 0 14px;
  color: var(--navy-deep);
  font-size: 1rem;
}

.chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.chips span {
  min-height: 42px;
  padding: 8px 10px;
  display: grid;
  place-items: center;
  color: var(--pink-dark);
  background: var(--pink-soft);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
}

.availability {
  padding: 55px 0;
  color: white;
  background: var(--navy-deep);
}

.availability-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.availability-icon {
  margin: 0;
  color: #46dc8c;
  font-size: 1.6rem;
  filter: drop-shadow(0 0 8px rgba(70, 220, 140, 0.45));
}

.availability .section-kicker { margin-bottom: 4px; color: var(--yellow); }
.availability h2 { margin: 0; font-size: 1.35rem; }
.availability div > p:last-child { margin: 3px 0 0; color: rgba(255, 255, 255, 0.76); font-size: 0.88rem; }

.contact {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(145deg, #fff6fa, #fff 54%, #fff7d7);
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.contact h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.3;
  letter-spacing: -0.05em;
}

.contact-inner > p:not(.section-kicker, .contact-note) {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--muted);
}

.button-contact {
  min-width: 290px;
  margin-top: 34px;
  color: white;
  background: var(--pink);
  box-shadow: 0 17px 36px rgba(245, 38, 127, 0.28);
}

.contact-note {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.contact-decoration {
  position: absolute;
  border-radius: 50%;
}

.contact-decoration-one {
  top: -100px;
  left: -80px;
  width: 300px;
  height: 300px;
  border: 54px solid rgba(245, 38, 127, 0.1);
}

.contact-decoration-two {
  right: -40px;
  bottom: -80px;
  width: 250px;
  height: 250px;
  background-image: radial-gradient(var(--navy) 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.1;
}

.notice {
  padding-top: 74px;
  padding-bottom: 74px;
  background: #f7f8fc;
}

.notice-inner {
  max-width: 880px;
}

.notice h2 {
  margin: 0 0 16px;
  color: var(--navy-deep);
  font-size: 1.05rem;
}

.notice ul {
  margin: 0;
  padding-left: 1.4em;
  color: var(--muted);
  font-size: 0.82rem;
}

.notice li + li { margin-top: 5px; }

footer {
  color: white;
  background: #031e40;
}

.footer-inner {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand { color: white; }
.footer-brand small { color: rgba(255, 255, 255, 0.6); }
.footer-inner > p { color: rgba(255, 255, 255, 0.55); font-size: 0.76rem; }

@media (max-width: 980px) {
  nav { gap: 16px; }
  nav a:not(.nav-contact) { display: none; }

  .hero-inner {
    grid-template-columns: 1fr 0.78fr;
    gap: 20px;
  }

  .hero h1 { font-size: clamp(2.35rem, 5.5vw, 3.7rem); }
  .floating-card-top { right: -2%; }
  .floating-card-bottom { left: -4%; }

  .intro-grid { gap: 55px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; }
  .service-card > p:not(.service-label, .price-note) { min-height: auto; }
  .service-card h3 { min-height: auto; }
  .option-box { grid-template-columns: 1fr; gap: 18px; }
  .strengths .shell { gap: 55px; }
  .profile-content { padding: 50px 40px; }
  .credentials { grid-template-columns: 1fr; }
  .credentials div { border-left: 0; border-top: 1px solid var(--line); }
  .credentials div:first-child { border-top: 0; }
}

@media (max-width: 720px) {
  .shell,
  .hero-inner {
    width: min(100% - 32px, 600px);
  }

  .section-pad { padding: 82px 0; }

  .header-inner {
    width: calc(100% - 28px);
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }

  .brand strong { font-size: 1rem; }
  .brand small { font-size: 0.54rem; }
  nav .nav-contact { padding: 9px 14px; font-size: 0.78rem; }

  .hero-inner {
    min-height: auto;
    padding: 66px 0 88px;
    grid-template-columns: 1fr;
  }

  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; font-size: 0.85rem; }
  .hero h1 { font-size: clamp(2rem, 9.3vw, 3rem); line-height: 1.32; }
  .hero-line-intro { white-space: normal; }
  .hero-line-intro > span { display: block; }
  .hero h1 em { white-space: normal; }
  .hero h1 em::after { height: 12px; }
  .hero-lead { font-size: 1rem; }
  .desktop-only { display: none; }
  .hero-actions { justify-content: center; }
  .button { width: 100%; max-width: 380px; }
  .hero-points { justify-content: center; }
  .hero-points li { min-width: 94px; padding: 0 12px; }
  .hero-points strong { font-size: 1.2rem; }

  .hero-visual {
    justify-self: center;
    width: min(92%, 440px);
    margin-top: 38px;
  }

  .floating-card { padding: 11px 13px; font-size: 0.74rem; }
  .floating-card-top { right: -4%; }
  .floating-card-bottom { left: -4%; }

  .intro-grid,
  .strengths .shell,
  .profile-card {
    grid-template-columns: 1fr;
  }

  .intro-grid { gap: 40px; }
  .intro-copy { padding-top: 0; }

  .visual-story { padding-bottom: 82px; }
  .visual-card { min-height: 550px; border-radius: 24px; }
  .visual-card img { object-position: 68% center; }
  .visual-card::after { background: linear-gradient(0deg, rgba(5, 41, 86, 0.94) 0%, rgba(5, 41, 86, 0.53) 53%, rgba(5, 41, 86, 0.03) 100%); }
  .visual-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 35px 27px; }
  .visual-caption h2 { font-size: 2rem; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; }
  .service-card { padding: 35px 27px 29px; }
  .option-box { padding: 30px 24px; }
  .option-box li { flex-direction: column; gap: 2px; }

  .strengths-title { position: static; }
  .strengths .shell { gap: 48px; }
  .strength-list article { grid-template-columns: 58px 1fr; gap: 17px; }
  .strength-list article > span { width: 48px; height: 48px; }

  .profile-card { border-radius: 24px; }
  .profile-card { padding: 18px; gap: 25px; }
  .profile-image-wrap { width: 100%; max-width: 430px; margin-inline: auto; }
  .profile-content { padding: 28px 8px 34px; }
  .credentials { margin: 28px 0; }

  .availability-inner { align-items: flex-start; }
  .availability h2 { font-size: 1.12rem; }

  .contact h2 { font-size: clamp(2.1rem, 10vw, 3.3rem); }
  .contact-decoration-one { width: 210px; height: 210px; border-width: 38px; }

  .footer-inner {
    padding: 36px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
