:root {
  --bg-soft: linear-gradient(180deg, #f2f6ff 0%, #eef7fb 100%);
  --bg-blue: radial-gradient(circle at 10% 10%, #5c63ea20, transparent 50%), radial-gradient(circle at 90% 80%, #259eea30, transparent 50%), #2563ea10;
  --text: #333333;
  --text-soft: #4d5b79;
  --line: #ccc;
  --primary: #2563ea;
  --primary-deep: #042866;
  --accent: #ff6400;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(26, 60, 135, 0.12);
  --shadow-soft: 0 12px 32px rgba(26, 60, 135, 0.08);
  --radius-sm: 2px;
  --radius-md: 10px;
  --container: min(1440px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--white);
}
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  width: 100%;
  display: block;
}
.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.section-soft {
  background: var(--bg-soft);
}
.section-labeled::before {
  content: attr(data-label);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(38, 88, 232, 0.06);
  font-size: 240px;
  font-weight: 400;
  pointer-events: none;
  white-space: nowrap;
}
.section-labeled--white::before {
  content: attr(data-label);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 1);
  font-size: 240px;
  font-weight: 400;
  pointer-events: none;
  z-index: 0;
}

.section-header,
.section-header--compact {
  text-align: center;
}
.section-header {
  max-width: 760px;
  margin: 0 auto 140px;
  z-index: 1;
  position: relative;
}
.section-header__eyebrow {
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #2563ea, #0098f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.section-header h2,
.intro h2,
.hero h1,
.cta__inner h2 {
  margin: 0;
  line-height: 1.3;
}
.section-header h2 {
  color: var(--primary-deep);
  font-size: clamp(2rem, 3vw, 2.5rem);
}
.section-header p:last-child,
.hero__text,
.intro__text p,
.projects__card p,
.why-network__note,
.flow__card p,
.cta__inner p,
.people__card li,
.about__card li {
  color: var(--text);
}
.section-header p:last-child {
  margin: 16px 0 0;
  line-height: 1.9;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px 2px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.button:hover {
  box-shadow: none;
}
.button--primary {
  background: linear-gradient(90deg, var(--accent) 0%, #fd9000 100%);
  box-shadow: 0 5px 10px rgba(30, 30, 30, 0.2);
  color: var(--white);
}
.header .button--primary {
  box-shadow: none;
}
.header .button--secondary {
  border-color: #2563ea;
  color: var(--primary);
  box-shadow: none;
}
.button--secondary {
  background: var(--white);
  border-color: #2563ea;
  box-shadow: var(--shadow-soft);
  color: var(--primary);
}
.button--large {
  min-height: 80px;
  padding: 0 68px 4px;
  font-size: 1.5rem;
  font-weight: 500;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}
.brand__note {
  color: var(--text-soft);
  font-size: 0.72rem;
}
.brand__name {
  max-width: 260px;
}

.header {
  position: fixed;
  width: 100%;
  max-width: min(1440px, calc(100vw - 48px));
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  margin: 20px auto;
  border-radius: 50px;
  box-sizing: border-box;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-left: 48px;
  padding-right: 24px;
  min-height: 78px;
}
.header-layout {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__nav {
  display: flex;
  gap: 16px;
  color: var(--text-soft);
  font-size: 0.875rem;
}
.header__nav a:hover,
.footer__links a:hover {
  color: var(--primary);
}
.header__actions {
  display: flex;
  gap: 12px;
}

/*ハンバーガーメニュー*/
.header__nav {
  display: flex;
  gap: 24px;
}

@media (max-width: 1024px) {
  .header.active {
    backdrop-filter: none;
    background: none;
  }
  .header-layout {
    display: none;
  }
  .header .header-layout {
    position: fixed;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
  }

  .header.active .header-layout {
    right: 0;
    top: 0;
    transform: translateX(0);
  }
  .header.active .header__nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 1.5rem;
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
  }
  .header.active .header__actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
  }
  .header.active .button {
    font-size: 1.5rem;
    padding: 10px 24px;
    max-width: 400px;
  }
  .header__nav a {
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
    padding-left: 10px;
  }
}

.hamburger {
  display: none;
}

@media (max-width: 1024px) {
  .hamburger {
    display: block;
    width: 50px;
    height: 50px;
    position: relative;
    cursor: pointer;
    z-index: 1000;
    margin-right: -4px;
    background-color: var(--primary);
    padding: 24px;
    border-radius: 50px;
  }

  .hamburger span {
    position: absolute;
    width: 60%;
    height: 2px;
    background: var(--white);
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: 0.3s;
  }

  .hamburger span:nth-child(1) {
    top: 18px;
  }
  .hamburger span:nth-child(2) {
    top: 27px;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 24px;
  }
  .hamburger.active span:nth-child(2) {
    transform: rotate(-45deg);
    top: 24px;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 0%, #5c63ea30, transparent 90%), radial-gradient(circle at 100% 140%, #25eae370, transparent 70%), #2563ea30;
}
.hero__overlay {
  background-position: right 54%;
  background-image: url(../../../img/lp/axl-studio/ad_partners_talent/hero__bg.png);
  background-repeat: no-repeat;
  background-size: 74%;
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: -1;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 44px;
  padding: 98px 48px 0;
}
.hero__content {
  padding: 72px 0 58px;
}
.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  letter-spacing: -0.05em;
  color: var(--primary-deep);
}
.hero h1 .hero__copy {
  background: linear-gradient(90deg, #2563ea, #0098f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__text {
  margin: 22px 0 0;
  font-size: 1rem;
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}
.hero__stats {
  width: 100%;
  margin-top: 28px;
  background: rgba(255, 255, 255);
  border-bottom: 1px solid #82aaf1;
  padding: 32px 0 16px;
}
.hero__stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-bottom: 0;
  max-width: 1080px;
  margin: 0 auto;
}
.hero__stat-card {
  text-align: center;
}
.hero__caption {
  margin: 0px auto;
  color: #7184ad;
  font-size: 0.76rem;
  text-align: right;
  max-width: 1080px;
  padding: 0 20px;
}
.hero__visual {
  padding: 40px 0;
}
.hero__photo-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}

.clients {
  padding: 56px 0 10px;
  border-bottom: 1px solid #82aaf1;
}
.clients .container {
  width: 100%;
}
.clients .section-header {
  margin-bottom: 2rem;
}
.clients .section-header h2 {
  color: var(--text);
  font-size: clamp(1.3rem, 3vw, 1.5rem);
}
.clients__logo__inner {
  overflow: hidden;
  display: flex;
  padding: 40px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 98%, transparent);
}
.clients__logo-list {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  list-style: none;
  animation: scroll 300s linear infinite;
}
.clients__logo-item {
  list-style: none;
}
.clients__logo-item img {
  height: 60px;
  width: auto;
  display: block;
}
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

.intro__layout {
  max-width: 1152px;
  text-align: center;
}
.intro h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
  background-image: url(../../../img/lp/axl-studio/ad_partners_talent/intro_bg.png);
  padding-bottom: 100px;
  background-size: 50%;
  background-position: center 60%;
  background-repeat: no-repeat;
}
.intro h2 span {
  color: var(--primary);
  display: block;
}
.intro__text {
  font-size: 1.125rem;
  line-height: 2;
  flex-basis: 50%;
}
.intro__text p {
  margin-bottom: 16px;
}

.people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.about__card,
.projects__card {
  border: 1px solid rgba(140, 177, 255, 0.35);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}
.about__card {
  border-radius: var(--radius-sm);
}
.about__card h3,
.projects__card h3,
.flow__card h3,
.why-network__node h3,
.people__card h3 {
  margin: 0;
  font-size: 1.5rem;
}

/*ABOUT*/
.about {
  padding-top: 20px;
  row-gap: 100px;
  text-align: center;
}
.about h3 {
  font-size: 2rem;
}
.about p {
  font-size: 1.125rem;
  line-height: 1.8;
}
.about__card {
  border-radius: var(--radius-md);
  padding: 24px;
  border: none;
  box-shadow: none;
  flex-basis: 62%;
}
.about__card h3 {
  font-size: 1.45rem;
  line-height: 1.55;
  text-align: center;
  color: var(--primary);
}
.about__project {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  align-items: center;
}
.about__freelance {
  max-width: 24%;
}
.about__arrow {
  max-width: 100px;
  padding-bottom: 50px;
}
.about__card h4 {
  font-size: 1.45rem;
  line-height: 1.55;
  text-align: center;
  color: var(--primary);
  margin: 0 auto 24px;
}
.about__alphadrive,
.about__partner {
  border: 1px solid;
  display: flex;
  align-items: center;
}
.about__alphadrive {
  border-color: var(--primary);
  margin-bottom: 16px;
}
.about__alphadrive-heading,
.about__partner-heading {
  color: var(--white);
  padding: 24px 0;
  font-weight: bold;
  font-size: 1.5rem;
  flex-basis: 25%;
}
.about__alphadrive-heading {
  background-color: var(--primary);
}
.about__alphadrive-text,
.about__partner-text {
  padding: 0 16px;
  line-height: 1.9;
  font-size: 1.125rem;
  text-align: left;
  flex-basis: 75%;
}
.about__partner {
  border-color: var(--primary-deep);
}
.about__partner-heading {
  background-color: var(--primary-deep);
}
.about__people {
  background-color: #edf2f9;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 20px;
}
.about__people p {
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 1.125rem;
}
.about__people ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
}
.about__people ul li {
  background-color: var(--white);
  border: 1px solid var(--primary);
  padding: 16px 0px;
  color: var(--primary);
  font-size: 1.175rem;
}
/*WHY NETWORK*/
.why-network {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  max-width: 1440px;
  margin: 0 auto 30px;
  align-items: start;
}
.why-network__item {
  text-align: center;
  text-align: left;
  border-right: 1px solid var(--line);
  padding: 0 48px;
  height: 100%;
}
.why-network__item:last-child {
  border-right: none;
}
.why-network h3 {
  font-size: 1.75rem;
}
.why-network p {
  font-size: 1.125rem;
  line-height: 1.8;
}

/*PROJECTS*/
.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 48px;
}
.projects__card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  border-width: 0;
  display: flex;
  flex-direction: column;
}
.projects__card-head {
  padding: 16px 16px;
  background: linear-gradient(90deg, #2563ea 0%, #1e50be 100%);
  color: var(--white);
}
.projects__card-head span.projects__card-head-case {
  border: 1px solid rgba(255, 255, 255);
  background-color: transparent;
  color: #ffffff;
}
.projects__card-head span {
  display: inline-block;
  margin-bottom: 6px;
  margin-right: 4px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255);
  color: var(--primary);
  padding: 0 10px 2px;
}
.projects__card h3 {
  margin-top: 4px;
  font-size: 1.25rem;
  line-height: 1.5;
}
.projects__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.projects__body p {
  line-height: 1.9;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  flex-grow: 1;
}
.projects__body dl {
  display: grid;
  grid-template-columns: 44px 2fr;
  gap: 10px;
}
.projects__body dt {
  font-weight: bold;
  background-color: #ebf2ff;
  padding: 2px 6px 4px;
  background-color: #ebf2ff;
  border-radius: var(--radius-sm);
  line-height: 1.3;
}
.projects__body dd {
  margin: 0;
  line-height: 1.6;
}

/*PEOPLE*/
.people {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 48px;
  margin: 0 auto;
}
.people__card {
  padding: 16px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 10px;
}
.people__image {
  width: 60%;
  margin: 0 auto;
}
.people__role {
  margin-top: 6px;
  font-size: 0.875rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: baseline;
}
.people__role span {
  display: inline-block;
  padding: 2px 6px 4px;
  background-color: #ebf2ff;
  border-radius: var(--radius-sm);
  line-height: 1.3;
  font-size: 0.875rem;
  height: 24px;
}
.people__career {
  flex-grow: 1;
}

/*FLOW*/
.flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.flow__card {
  padding: 26px 0px;
  border-radius: 22px;
  text-align: center;
  position: relative;
}
.flow__card::after {
  content: "";
  position: absolute;
  right: -12%;
  top: 35%;
  width: 20%;
  height: 2px;
  background: #2563ea30;
}
.flow__card:last-child::after {
  display: none;
}
.flow__card span {
  display: inline-block;
  margin-bottom: 12px;
  max-width: 120px;
  position: relative;
  z-index: 1;
}
.flow__card span::before {
  position: absolute;
  content: "";
  background-image: url(../../../img/lp/axl-studio/ad_partners_talent/flow__step01.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 40px;
  height: 48px;
  top: -15px;
  left: -10px;
}
.flow__card span:nth-child(1)::before {
  border-top-color: #0098f020;
}

.flow__card:nth-child(2) span::before {
  background-image: url(../../../img/lp/axl-studio/ad_partners_talent/flow__step02.png);
}

.flow__card:nth-child(3) span::before {
  background-image: url(../../../img/lp/axl-studio/ad_partners_talent/flow__step03.png);
}

.flow__card:nth-child(4) span::before {
  background-image: url(../../../img/lp/axl-studio/ad_partners_talent/flow__step04.png);
}
.flow__card:nth-child(5) span::before {
  background-image: url(../../../img/lp/axl-studio/ad_partners_talent/flow__step05.png);
}
.flow__card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.flow__card p {
  line-height: 1.6;
  text-align: left;
}
/*CTA*/
.cta {
  position: relative;
  overflow: hidden;
  background-image: url(../../../img/lp/axl-studio/ad_partners_talent/cta__bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
.cta__inner {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
  padding: 200px 0 100px;
}
.cta__inner h2 {
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  margin-bottom: 16px;
  font-weight: 500;
}
.cta__inner p {
  max-width: 760px;
  margin: 24px auto 48px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
  font-size: 1.125rem;
}
.cta__note {
  font-size: 0.875rem;
  display: block;
  margin-top: 10px;
}

/*FOOTER*/
.footer {
  background: #12357f;
  color: var(--white);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 64px 0;
}
.footer__links {
  display: flex;
  gap: 24px;
  color: var(--white);
  font-size: 0.825rem;
}
.footer p {
  margin: 0;
  color: var(--white);
  font-size: 0.825rem;
}

@media (max-width: 1280px) {
  .brand__name {
    max-width: 220px;
  }
  .why-network__item {
    padding: 0 32px;
  }
  .projects {
    gap: 32px;
  }
  .people {
    gap: 32px;
  }
}
@media (max-width: 1180px) {
  .brand__name {
    max-width: 180px;
  }
  .header__nav {
    font-size: 0.75rem;
    gap: 13px;
  }
}
@media (max-width: 1080px) {
  .button--large {
    padding: 0 32px 4px;
    font-size: 1.5rem;
    min-height: 70px;
  }
  .header__inner {
    min-height: 68px;
    padding-left: 40px;
    padding-right: 16px;
  }
  .hero-layout {
    padding: 98px 32px 0;
    gap: 32px;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 3vw, 3rem);
  }
  .hero__stats-inner {
    width: 80%;
  }
  .hero__content {
    padding: 60px 0 30px;
  }
  .about__people ul li {
    font-size: 0.875rem;
  }
  .projects {
    padding: 0;
    gap: 24px;
  }
  .people {
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .header__inner {
    min-height: 64px;
  }
  .why-network__note {
    font-size: 1rem;
  }
  .projects {
    grid-template-columns: repeat(2, 1fr);
  }
  .people {
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }
  .flow__card h3 {
    font-size: 1rem;
  }
  .flow__card p {
    font-size: 0.875rem;
  }
  .flow {
    gap: 40px;
  }
  .flow__card::after {
    right: -20%;
    top: 33%;
  }
}
@media (max-width: 890px) {
  .about__card h3,
  .why-network__node h3,
  .people__card h3 {
    font-size: 1.3rem;
  }
  .hero-layout {
    padding: 64px 0 0;
  }
  .hero__content {
    padding: 50px 0 28px;
  }
  .button--large {
    min-height: 64px;
  }
  .hero__actions {
    margin-top: 18px;
  }
  .hero__stats {
    margin-top: 18px;
  }
  .hero__caption {
    margin: 0;
  }
  .hero__visual picture {
    width: 100%;
  }
  .hero__visual {
    padding: 40px 0 10px;
  }
  .about__arrow {
    max-width: 80px;
  }
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .hero-layout,
  .intro__layout,
  .why-network,
  .projects,
  .about,
  .flow {
    grid-template-columns: 1fr;
  }
  .header {
    max-width: min(1440px, calc(100vw - 20px));
    margin: 10px auto;
  }
  .header__inner {
    padding-left: 10px;
    padding-right: 0px;
  }
  .hero {
    z-index: -3;
  }
  .hero__content {
    padding: 50px 48px 0;
  }
  .hero__visual {
    padding: 0 48px 10px;
    z-index: -2;
  }
  .hero__overlay {
    bottom: -13%;
    background-size: 96%;
  }
  .hero__stats-inner {
    width: 96%;
  }
  .intro h2 {
    background-size: 400px;
    background-position: center 50%;
  }
  .about h3 {
    font-size: 1.5rem;
  }
  .why-network__item {
    border-right: none;
  }
  .why-network__item {
    padding: 0 32px 32px;
  }
  .why-network__flow {
    grid-template-columns: 1fr 1fr;
  }
  .why-network {
    gap: 48px;
  }
  .projects {
    max-width: 560px;
    margin: 0 auto;
  }
  .section-labeled--white::before {
    top: 40px;
    font-size: 5rem;
  }
  .section-labeled::before {
    top: 33px;
    font-size: 5rem;
  }
  .section-header {
    margin: 0 auto 80px;
  }
  .section-header__eyebrow {
    font-size: 1rem;
  }
  .hero-layout {
    gap: 0;
  }
  .hero__stats {
    max-width: 100%;
  }
  .adjust {
    display: none;
  }
  .hero__actions {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .hero__stat-card {
    flex: 0 0 calc(50% - 8px);
  }
  .hero__stat-card:nth-child(1) {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
  }
  .intro__layout {
    flex-direction: column;
  }
  .intro__heading {
    text-align: center;
    margin: 0 auto;
  }
  .intro__mark {
    width: 80px;
    height: 110px;
    margin: 20px auto 0;
  }
  .intro__text {
    font-size: 1.125rem;
    line-height: 2;
    flex-basis: 100%;
    margin: 0 auto;
  }
  .about__icon {
    width: 120px;
    height: 120px;
    margin: -96px auto 14px;
  }
  .about__project {
    flex-direction: column;
  }
  .about__freelance {
    max-width: 280px;
    padding-bottom: 30px;
  }
  .about__arrow {
    padding-bottom: 0;
    transform: rotate(90deg);
  }
  .about__card {
    margin-top: 50px;
  }
  .projects__card h3 {
    font-size: 1.2rem;
  }
  .projects__no {
    width: 50px;
  }
  .why-network {
    max-width: 500px;
    margin: 0 auto 32px;
  }
  .why-network__node {
    display: flex;
    background: #edf2fa;
    border-radius: 110px;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 16px;
  }
  .why-network__flow {
    margin-top: 5%;
    margin-bottom: 3%;
  }
  .why-network__circle {
    margin: 0;
  }
  .why-network__flow::before {
    transform: rotate(-90deg);
    left: 6%;
    margin: 0;
    max-width: 80px;
    top: 23%;
    background-position: right bottom;
    background-size: cover;
  }
  .why-network__flow::after {
    transform: rotate(90deg);
    right: 6%;
    margin: 0;
    top: 23%;
    background-position: right top;
    background-size: cover;
    left: auto;
    height: 16px;
    width: 80px;
  }
  .why-network__text {
    text-align: left;
  }
  .why-network__node--core {
    background-color: var(--primary);
  }
  .why-network__node--core .why-network__text h3,
  .why-network__node--core .why-network__text p {
    color: var(--white);
  }
  .why-network__note {
    text-align: left;
  }
  .flow__card span {
    max-width: 150px;
  }
  .flow__card::after {
    height: 0;
  }
  .flow__card span::after {
    content: "";
    position: absolute;
    right: auto;
    top: 80%;
    width: 2px;
    height: 150%;
    background: #2563ea30;
    left: -66%;
  }
  .flow__card:last-child span::after {
    display: none;
  }
  .flow__card span::before {
    top: 50%;
    left: -80%;
    transform: translateY(-50%);
  }
  .flow__card p {
    font-size: 0.875rem;
    max-width: 53%;
    margin-left: 32%;
  }
}

@media (max-width: 840px) {
  .section {
    padding: 88px 0;
  }
  .why-network__flow {
    grid-template-columns: 1fr;
  }
  .why-network__flow span::before,
  .why-network__flow span::after {
    display: none;
  }
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .brand__name {
    font-size: 1.55rem;
  }
  .button,
  .button--large {
    width: 100%;
  }
  .hero h1 {
    font-size: 2.35rem;
  }
  .hero__content .adjust {
    display: block;
  }
  .section-header h2,
  .intro h2,
  .cta__inner h2 {
    font-size: 1.8rem;
  }
  .about__card,
  .people__card,
  .flow__card {
    padding-left: 20px;
    padding-right: 20px;
  }
  .about__card h3,
  .why-network__node h3,
  .people__card h3 {
    font-size: 1.125rem;
  }
  .why-network__circle {
    width: 148px;
    height: 148px;
    font-size: 1.15rem;
  }
  .why-network__item {
    padding: 0;
  }
  .hero__visual {
    padding: 0;
  }
  .hero__overlay {
    bottom: 7%;
  }
  .hero__content {
    padding: 50px 0 0;
  }
  .hero__stats-inner {
    width: 80%;
    grid-template-columns: 1fr;
  }
  .about__alphadrive,
  .about__partner {
    flex-direction: column;
  }
  .about__alphadrive-heading,
  .about__partner-heading {
    padding: 8px 0;
    width: 100%;
  }
  .about__freelance {
    max-width: 280px;
  }
  .about__alphadrive-text,
  .about__partner-text {
    padding: 10px 16px;
  }
  .about__people ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .people {
    grid-template-columns: 1fr;
  }
  .people__image {
    max-width: 180px;
  }
  .flow__card p {
    margin: 0 auto;
    max-width: 260px;
  }
  .flow__card span::before {
    left: -60%;
  }
  .flow__card span::after {
    left: -46%;
  }
}
