/* ARTMET — Kurumsal sayfalar (Ana sayfa + Hakkımızda + Partnerler + İletişim + Teklif) */

.am-page {
  background: var(--page-bg, #f7f8fa);
  color: var(--ink);
}

.am-main {
  padding-top: var(--header);
}

.am-shell {
  width: min(var(--content-max, 1120px), 100% - 3rem);
  margin-inline: auto;
  padding: 2.5rem 0 4rem;
}

.am-wrap {
  width: min(var(--content-max, 1120px), 100% - 3rem);
  margin-inline: auto;
}

.am-hero .am-wrap,
.am-cta .am-wrap {
  padding: 0;
}

/* Tipografi */
.am-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.am-pagehead {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.am-pagehead h1 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  max-width: 22ch;
}

.am-lead {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 58ch;
}

.am-breadcrumb {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.am-breadcrumb a {
  color: var(--ink-soft);
  font-weight: 600;
}

.am-breadcrumb a:hover { color: var(--blue); }

.am-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue);
}

.am-link:hover { color: var(--red); }

.am-inline-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.am-inline-link:hover { color: var(--red); }

/* ── Ana sayfa hero ── */
.am-hero {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0 3rem;
}

.am-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.am-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1rem;
  max-width: 16ch;
}

.am-hero__img {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.am-hero__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.am-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.5rem 0;
}

.am-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.am-hero__meta li {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.am-hero__meta strong {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.1rem;
}

/* ── Bölümler ── */
.am-section {
  padding: 3rem 0;
}

.am-section--white {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.am-section__title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.am-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.am-card {
  display: block;
  padding: 1.35rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.am-section:not(.am-section--white) .am-card {
  background: #fff;
}

.am-card:hover {
  border-color: rgba(26, 77, 109, 0.25);
  box-shadow: var(--shadow);
}

.am-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.am-card p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 0.65rem;
}

.am-card__go {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue);
}

/* Hakkımızda */
.am-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.am-about-grid figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.am-about-grid figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.am-about-grid h2 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.am-about-grid p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.am-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
}

.am-stat {
  text-align: center;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.am-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.2rem;
}

.am-stat span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.am-founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.am-founder {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.am-founder__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #1a4d6d, #2d6a8a);
}

.am-founder__photo--alt {
  background: linear-gradient(160deg, #c0392b, #a93226);
}

.am-founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.am-founder__photo.is-placeholder img { display: none; }

.am-founder__initial {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}

.am-founder__photo.is-placeholder .am-founder__initial { display: flex; }

.am-founder__body {
  padding: 1.25rem;
}

.am-founder__role {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.25rem;
}

.am-founder h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.am-founder p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.am-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0.65rem 0 0;
}

.am-tags li {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.28rem 0.55rem;
  border-radius: 100px;
  background: var(--bg-soft);
  color: var(--ink-soft);
}

/* Partnerler */
.am-rows {
  border-top: 1px solid var(--line);
  margin-bottom: 2.5rem;
}

.am-row {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.am-row__num {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.4;
}

.am-row h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.am-row p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.am-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.am-brands li {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-soft);
}

.am-brands-section {
  margin-bottom: 2.5rem;
}

.am-brands-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* İletişim — hızlı şerit */
.am-contact-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.am-contact-quick__item {
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.am-contact-quick__item strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.am-contact-quick__item span {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.am-contact-visual {
  margin: 0 0 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.am-contact-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.am-contact-visual figcaption {
  font-size: 0.75rem;
  color: var(--ink-muted);
  padding: 0.5rem 0.85rem;
  background: #fff;
  border-top: 1px solid var(--line);
}

.am-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.am-contact-links a {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue);
}

.am-contact-links a:hover { color: var(--red); }

.am-guide {
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

.am-guide .am-row:last-child { border-bottom: none; }

/* İletişim */
.am-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.am-info-list {
  display: grid;
  gap: 0.65rem;
}

.am-info {
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.am-info h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.2rem;
}

.am-info p, .am-info a {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.am-info a { font-weight: 600; color: var(--ink); }
.am-info a:hover { color: var(--red); }

/* Form */
.am-form-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.5rem;
}

.am-form-box h2 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.am-form-box > p {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.am-form {
  display: grid;
  gap: 0.85rem;
}

.am-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.am-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-muted);
  margin-bottom: 0.3rem;
}

.am-form input,
.am-form select,
.am-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  background: #fff;
}

.am-form input:focus,
.am-form select:focus,
.am-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 77, 109, 0.1);
}

.am-form textarea {
  min-height: 120px;
  resize: vertical;
}

.am-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.am-btn--wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  background: #25d366;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.am-btn--wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Teklif süreci */
.am-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.am-step {
  text-align: center;
  padding: 1rem 0.5rem;
}

.am-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.am-step h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.am-step p {
  font-size: 0.75rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* Koyu band */
.am-band {
  background: linear-gradient(135deg, #152032, #1a3348);
  color: #fff;
  border-radius: 10px;
  padding: 2rem 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.am-band h2 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.am-band p {
  font-size: 0.875rem;
  opacity: 0.88;
  line-height: 1.65;
}

.am-band .am-kicker { color: #fca5a5; }

.am-band ol {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.am-band li {
  font-size: 0.875rem;
  padding-left: 1rem;
  border-left: 2px solid var(--red);
  line-height: 1.5;
}

.am-cta {
  background: linear-gradient(135deg, #152032, #1a3348);
  color: #fff;
  padding: 2.5rem 0;
}

.am-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.am-cta h2 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.am-cta p {
  font-size: 0.9rem;
  opacity: 0.88;
  max-width: 42ch;
}

.am-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Ana sayfa — scroll deneyimi */
.am-home {
  overflow: clip;
}

.am-home-hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  display: grid;
  align-items: center;
  padding: clamp(3.4rem, 7vw, 5.6rem) 0 clamp(4rem, 8vw, 6.3rem);
  background:
    linear-gradient(90deg, rgba(10, 18, 32, 0.94) 0%, rgba(10, 18, 32, 0.78) 42%, rgba(10, 18, 32, 0.18) 100%),
    #111827;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  overflow: hidden;
}

.am-home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(180deg, transparent, rgba(247,248,250,0.95));
  pointer-events: none;
  z-index: -1;
}

.am-home-hero__backdrop {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0.42;
  pointer-events: none;
  z-index: -2;
}

.am-home-hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,18,32,0.96) 0%, rgba(10,18,32,0.65) 38%, rgba(10,18,32,0.18) 100%),
    linear-gradient(180deg, rgba(10,18,32,0.12), rgba(10,18,32,0.7));
}

.am-home-hero__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
  transform: scale(1.05);
}

.am-home-hero__glow {
  position: absolute;
  inset: 16% auto auto 37%;
  width: min(46vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.22), transparent 66%);
  filter: blur(14px);
  pointer-events: none;
  z-index: -1;
}

.am-home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.am-home-hero__brandline {
  display: inline-grid;
  gap: 0.25rem;
  margin-bottom: 1.3rem;
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.am-home-hero__brandline span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.am-home-hero__brandline strong {
  color: rgba(255,255,255,0.84);
  font-size: 0.78rem;
  font-weight: 800;
}

.am-home-hero__copy h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.2vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-width: 11.2ch;
  margin-bottom: 1.1rem;
  color: #fff;
}

.am-home-hero .am-lead {
  color: rgba(255,255,255,0.76);
}

.am-home-hero .am-hero__meta li {
  color: rgba(255,255,255,0.62);
}

.am-home-hero .am-hero__meta strong {
  color: #fff;
}

.am-home-hero .am-btn--ghost {
  border-color: rgba(255,255,255,0.24);
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.am-home-hero .am-btn--ghost:hover {
  border-color: rgba(255,255,255,0.48);
  background: rgba(255,255,255,0.14);
}

.am-hero-stack {
  --hero-progress: 0;
  position: relative;
  min-height: clamp(520px, 66vw, 720px);
  perspective: 1100px;
  transform:
    rotateX(calc(var(--mouse-y, 0) * -2deg))
    rotateY(calc(var(--mouse-x, 0) * 2deg));
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}

.am-hero-stack::before {
  content: "";
  position: absolute;
  inset: 4% 2% 2% 4%;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.04)),
    radial-gradient(circle at 78% 14%, rgba(196, 30, 58, 0.2), transparent 18rem);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 34px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.am-hero-stack__card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
  transform: translate3d(calc(var(--mouse-x, 0) * -10px), calc(var(--hero-progress) * -28px + var(--mouse-y, 0) * -10px), 0);
  will-change: transform;
}

.am-hero-stack__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(calc(1.05 + var(--hero-progress) * 0.045));
  will-change: transform;
}

.am-hero-stack__card figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgba(10, 18, 32, 0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.am-hero-stack__card--main {
  inset: 5% 5% 8% 8%;
  z-index: 1;
}

.am-hero-stack__card--laser {
  width: 48%;
  height: 37%;
  left: 0;
  top: 0;
  z-index: 2;
  transform: translate3d(calc(var(--hero-progress) * -26px + var(--mouse-x, 0) * -22px), calc(var(--hero-progress) * 34px + var(--mouse-y, 0) * -18px), 90px) rotate(-7deg);
}

.am-hero-stack__card--tools {
  width: 44%;
  height: 29%;
  right: 0;
  bottom: 0;
  z-index: 3;
  transform: translate3d(calc(var(--hero-progress) * 34px + var(--mouse-x, 0) * 24px), calc(var(--hero-progress) * -34px + var(--mouse-y, 0) * 18px), 120px) rotate(6deg);
}

.am-hero-console {
  position: absolute;
  z-index: 5;
  background: rgba(17, 24, 39, 0.82);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 24px 70px rgba(21, 32, 50, 0.18);
  backdrop-filter: blur(18px);
}

.am-hero-console {
  right: 2%;
  top: 62%;
  display: grid;
  gap: 0.48rem;
  padding: 0.9rem;
  border-radius: 20px;
  transform: translateZ(150px);
}

.am-hero-console div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
}

.am-hero-console span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.8);
}

.am-hero-stack__badge {
  position: absolute;
  right: 8%;
  top: 9%;
  z-index: 4;
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(21, 32, 50, 0.13);
  backdrop-filter: blur(14px);
}

.am-hero-stack__badge span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.am-hero-stack__badge strong {
  font-size: 0.82rem;
  color: var(--ink);
}

.am-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  width: 30px;
  height: 52px;
  border: 1px solid rgba(26, 77, 109, 0.28);
  border-radius: 999px;
  transform: translateX(-50%);
}

.am-scroll-cue__ball {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  transform: translateX(-50%);
  animation: amCue 1.6s ease-in-out infinite;
}

@keyframes amCue {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.45; }
  50% { transform: translate(-50%, 23px); opacity: 1; }
}

.am-motion {
  --stage-progress: 0;
  position: relative;
  height: 320vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(196, 30, 58, 0.08), transparent 24rem),
    radial-gradient(circle at 82% 72%, rgba(26, 77, 109, 0.1), transparent 28rem),
    #f7f8fa;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.am-motion__sticky {
  position: sticky;
  top: var(--header);
  height: calc(100svh - var(--header));
  display: grid;
  align-items: center;
  overflow: hidden;
}

.am-motion__sticky::before {
  content: "";
  position: absolute;
  inset: -25% -10%;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.84), transparent 55%),
    radial-gradient(circle at calc(20% + var(--stage-progress) * 45%) 24%, rgba(196, 30, 58, 0.1), transparent 24rem),
    radial-gradient(circle at 78% 74%, rgba(26, 77, 109, 0.12), transparent 30rem);
  transform: translateY(calc(var(--stage-progress) * -6%));
  pointer-events: none;
}

.am-motion__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  z-index: 1;
}

.am-motion .am-kicker {
  color: var(--red);
}

.am-motion__copy h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  max-width: 10ch;
}

.am-motion__steps {
  display: grid;
  gap: 0.75rem;
}

.am-motion-step {
  padding: 1rem 0 1rem 1.1rem;
  border-left: 2px solid rgba(26, 77, 109, 0.12);
  opacity: 0.5;
  transform: translateX(-10px);
  transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.am-motion-step.is-active {
  opacity: 1;
  transform: translateX(0);
  border-color: var(--red);
}

.am-motion-step span {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.am-motion-step h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.am-motion-step p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 38ch;
}

.am-motion__visual {
  position: relative;
  height: min(68vh, 620px);
}

.am-motion-frame {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(26, 77, 109, 0.12);
  box-shadow: 0 34px 90px rgba(21, 32, 50, 0.14);
  opacity: 0;
  transform: translate3d(16%, 12%, 0) scale(0.84) rotate(4deg);
  transition: opacity 0.55s ease, transform 0.75s cubic-bezier(.2,.8,.2,1);
}

.am-motion-frame.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
}

.am-motion-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08) translateY(calc(var(--stage-progress) * -4%));
}

.am-motion__progress {
  position: absolute;
  right: -2rem;
  top: 0;
  bottom: 0;
  width: 12px;
  z-index: 5;
}

.am-motion__track {
  position: absolute;
  left: 50%;
  top: 8%;
  bottom: 8%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(26, 77, 109, 0.16);
}

.am-motion__ball {
  position: absolute;
  left: 50%;
  top: calc(8% + var(--stage-progress) * 84%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(196, 30, 58, 0.18), 0 0 32px rgba(196, 30, 58, 0.7);
  transform: translate(-50%, -50%);
}

.am-section-split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.6rem;
}

.am-section-split p:last-child {
  max-width: 36ch;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.92rem;
}

.am-service-cards .am-card {
  min-height: 230px;
}

.am-card__num {
  display: inline-flex;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.am-lift-card {
  text-decoration: none;
  color: inherit;
  transform: translateY(0);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.am-lift-card:hover {
  transform: translateY(-8px);
}

.am-flow {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #f2f5f8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.am-flow__rail {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  gap: 1rem;
  width: max-content;
  transform: translate3d(calc(-50% + var(--flow-x, 0px)), -50%, 0) rotate(-4deg);
  opacity: 0.28;
  pointer-events: none;
  will-change: transform;
}

.am-flow__rail img {
  width: clamp(240px, 28vw, 420px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(21, 32, 50, 0.16);
}

.am-flow__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.am-flow__content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.am-flow__content p:last-child {
  max-width: 48ch;
  color: var(--ink-soft);
  line-height: 1.75;
}

.am-duo-lines {
  display: grid;
  gap: 2.2rem;
}

.am-duo-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: center;
}

.am-duo-line--reverse {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
}

.am-duo-line--reverse figure {
  order: 2;
}

.am-duo-line figure {
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(21, 32, 50, 0.12);
}

.am-duo-line img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.am-duo-line:hover img {
  transform: scale(1.045);
}

.am-duo-line h2 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.am-duo-line p:not(.am-kicker) {
  color: var(--ink-soft);
  line-height: 1.75;
}

.am-diagnostics {
  position: relative;
  background:
    radial-gradient(circle at 88% 20%, rgba(196, 30, 58, 0.1), transparent 24rem),
    #f7f8fa;
}

.am-diagnostics__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.am-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.am-proof-grid div {
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(21, 32, 50, 0.05);
}

.am-proof-grid strong {
  display: block;
  color: var(--blue);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.am-proof-grid span {
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.am-diagnostic-panel {
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(145deg, #101827, #17253a);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 34px 100px rgba(21, 32, 50, 0.24);
}

.am-diagnostic-panel__top {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}

.am-diagnostic-panel__top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
}

.am-diagnostic-panel__top span:first-child {
  background: var(--red);
}

.am-diagnostic-panel__top strong {
  margin-left: auto;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.am-diagnostic-panel ul {
  list-style: none;
  padding: 1.25rem;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.am-diagnostic-panel li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.055);
  color: rgba(255,255,255,0.84);
  font-size: 0.88rem;
}

.am-diagnostic-panel li span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.1);
}

.am-diagnostic-panel li span.is-live {
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.44);
  animation: amPulse 1.5s ease-out infinite;
}

@keyframes amPulse {
  0% { box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.45); }
  100% { box-shadow: 0 0 0 16px rgba(196, 30, 58, 0); }
}

.am-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.am-capability-grid article {
  position: relative;
  min-height: 230px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,1)),
    #fff;
  overflow: hidden;
  box-shadow: 0 16px 46px rgba(21, 32, 50, 0.05);
}

.am-capability-grid article::before {
  content: "";
  position: absolute;
  inset: auto -25% -45% -25%;
  height: 120px;
  background: radial-gradient(circle, rgba(26, 77, 109, 0.12), transparent 64%);
  transform: translateY(18px);
  transition: transform 0.35s ease;
}

.am-capability-grid article:hover::before {
  transform: translateY(0);
}

.am-capability-grid span {
  display: inline-flex;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 2.2rem;
}

.am-capability-grid h3 {
  position: relative;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.am-capability-grid p {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.65;
}

.am-brand-strip {
  background: #111827;
  color: #fff;
  overflow: hidden;
}

.am-brand-strip .am-wrap {
  position: relative;
}

.am-brand-strip .am-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  top: -20%;
  width: 45%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.24), transparent 68%);
  pointer-events: none;
}

.am-brand-strip .am-kicker {
  color: #fca5a5;
}

.am-brand-strip h2 {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.7vw, 3.4rem);
  line-height: 1.05;
  max-width: 13ch;
  margin-bottom: 1.5rem;
}

.am-brand-strip ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.am-brand-strip li {
  padding: 0.62rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
  font-size: 0.86rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.am-brand-strip li:hover {
  transform: translateY(-4px);
  border-color: rgba(252, 165, 165, 0.5);
  background: rgba(196, 30, 58, 0.16);
}

/* Kurumsal alt sayfalar — premium animasyonlu düzen */
.am-subhero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5rem) 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(196, 30, 58, 0.1), transparent 26rem),
    linear-gradient(135deg, #fff 0%, #f5f7fa 100%);
  border-bottom: 1px solid var(--line);
}

.am-subhero::before {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 77, 109, 0.12), transparent 68%);
  pointer-events: none;
}

.am-subhero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.am-subhero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 11ch;
  margin-bottom: 1rem;
}

.am-subhero__visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(26, 77, 109, 0.12);
  box-shadow: 0 34px 90px rgba(21, 32, 50, 0.15);
}

.am-subhero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,18,32,0.62));
}

.am-subhero__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}

.am-subhero__visual.is-visible img,
.am-subhero__visual:hover img {
  transform: scale(1);
}

.am-subhero__visual figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.am-subhero--compact {
  background:
    radial-gradient(circle at 74% 26%, rgba(26, 77, 109, 0.12), transparent 28rem),
    linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%);
}

.am-subhero--contact {
  background:
    radial-gradient(circle at 82% 20%, rgba(196, 30, 58, 0.09), transparent 26rem),
    radial-gradient(circle at 22% 80%, rgba(26, 77, 109, 0.1), transparent 28rem),
    linear-gradient(135deg, #fff 0%, #f6f8fb 100%);
}

.am-stats--motion .am-stat {
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.am-stats--motion .am-stat:hover {
  transform: translateY(-8px);
  border-color: rgba(26, 77, 109, 0.18);
  box-shadow: 0 20px 60px rgba(21, 32, 50, 0.1);
}

.am-process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
}

.am-process-line::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 77, 109, 0.28), transparent);
  transform: translateY(-50%);
}

.am-process-line article {
  position: relative;
  z-index: 1;
  min-height: 118px;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 18px 50px rgba(21, 32, 50, 0.06);
  backdrop-filter: blur(12px);
}

.am-process-line span {
  display: block;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 1.6rem;
}

.am-process-line strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.35;
}

.am-process-line--dark {
  padding: 1rem;
  border-radius: 26px;
  background: linear-gradient(135deg, #111827, #19324a);
  overflow: hidden;
}

.am-process-line--dark::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.34), transparent);
}

.am-process-line--dark article {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}

.am-network-card {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 30px;
  background: linear-gradient(135deg, #111827, #1a3348);
  box-shadow: 0 34px 90px rgba(21, 32, 50, 0.18);
  overflow: hidden;
}

.am-network-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 20% 20%, rgba(196, 30, 58, 0.35), transparent 20rem),
    radial-gradient(circle at 82% 80%, rgba(56, 189, 248, 0.24), transparent 22rem);
  animation: amSoftDrift 9s ease-in-out infinite alternate;
}

.am-network-card span {
  position: relative;
  z-index: 1;
  min-height: 116px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

@keyframes amSoftDrift {
  to { transform: translate3d(5%, -4%, 0) rotate(8deg); }
}

.am-partner-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.am-partner-matrix article {
  position: relative;
  min-height: 210px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(21, 32, 50, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.am-partner-matrix article::after {
  content: "";
  position: absolute;
  inset: auto -35% -50% -35%;
  height: 150px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.12), transparent 65%);
  transition: transform 0.35s ease;
}

.am-partner-matrix article:hover {
  transform: translateY(-8px);
  border-color: rgba(26, 77, 109, 0.18);
  box-shadow: 0 24px 70px rgba(21, 32, 50, 0.12);
}

.am-partner-matrix article:hover::after {
  transform: translateY(-18px);
}

.am-partner-matrix span {
  display: inline-flex;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 1.6rem;
}

.am-partner-matrix h3 {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.am-partner-matrix p {
  position: relative;
  z-index: 1;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.65;
}

.am-brands-section--panel {
  padding: 1.5rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(21, 32, 50, 0.06);
}

.am-route-panel {
  padding: 1.4rem;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(21, 32, 50, 0.06);
  margin-bottom: 1rem;
}

.am-route-panel h2 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.am-route-list {
  display: grid;
  gap: 0.65rem;
}

.am-route-list a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.1rem 0.8rem;
  padding: 0.9rem;
  border-radius: 16px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.am-route-list a:hover {
  transform: translateX(8px);
  border-color: rgba(26, 77, 109, 0.18);
  background: #fff;
}

.am-route-list span {
  grid-row: span 2;
  color: var(--red);
  font-weight: 900;
  font-size: 0.72rem;
}

.am-route-list strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.am-route-list em {
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-style: normal;
}

.am-contact-grid--premium {
  align-items: stretch;
}

.am-form-box--premium {
  position: sticky;
  top: calc(var(--header) + 1.5rem);
}

.am-contact-quick--motion .am-contact-quick__item,
.am-info-list--motion .am-info {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.am-contact-quick--motion .am-contact-quick__item:hover,
.am-info-list--motion .am-info:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 77, 109, 0.18);
  box-shadow: 0 18px 52px rgba(21, 32, 50, 0.09);
}

/* Hakkımızda — özgür hikaye düzeni */
.am-about-story {
  background: #f7f8fa;
}

.am-about-open {
  padding: clamp(3rem, 7vw, 5.4rem) 0 2rem;
  background:
    radial-gradient(circle at 78% 18%, rgba(196, 30, 58, 0.08), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}

.am-about-open__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

.am-about-open h1 {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 7vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
  max-width: 10ch;
}

.am-about-open__lead {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.85;
  max-width: 42ch;
}

.am-about-open [data-reveal] {
  animation: amInitialReveal 0.8s cubic-bezier(.2,.8,.2,1) forwards;
}

.am-about-open [data-reveal]:nth-child(2) {
  animation-delay: 0.12s;
}

@keyframes amInitialReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.am-about-cinema {
  position: relative;
  width: min(1360px, 100% - 3rem);
  margin: 0 auto;
  border-radius: 34px;
  overflow: hidden;
  min-height: clamp(360px, 58vw, 680px);
  box-shadow: 0 34px 100px rgba(21, 32, 50, 0.18);
}

.am-about-cinema::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(10,18,32,0.62));
  pointer-events: none;
}

.am-about-cinema img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
}

.am-about-cinema.is-visible img {
  transform: scale(1);
}

.am-about-cinema__note {
  position: absolute;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 1;
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
}

.am-about-cinema__note span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
}

.am-about-cinema__note strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.am-about-manifesto {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.am-about-manifesto__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.am-about-manifesto__sticky {
  position: sticky;
  top: calc(var(--header) + 2rem);
}

.am-about-manifesto__sticky h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
  max-width: 10ch;
}

.am-about-manifesto__copy {
  display: grid;
  gap: 2.2rem;
}

.am-about-manifesto__copy p {
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.9;
  color: var(--ink-soft);
  margin: 0;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid var(--line);
}

.am-about-rhythm {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.am-about-rhythm__line {
  display: grid;
  grid-template-columns: 80px minmax(240px, 0.5fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.am-about-rhythm__line:last-child {
  border-bottom: none;
}

.am-about-rhythm__line span {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
}

.am-about-rhythm__line h3 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.05;
}

.am-about-rhythm__line p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0;
}

.am-about-founders-free {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.am-about-founders-free__head {
  max-width: 680px;
  margin-bottom: 2.4rem;
}

.am-about-founders-free__head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.am-founder-line {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--line);
}

.am-founder-line--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr);
}

.am-founder-line--reverse figure {
  order: 2;
}

.am-founder-line__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(160deg, #1a4d6d, #2d6a8a);
  box-shadow: 0 28px 80px rgba(21, 32, 50, 0.16);
}

.am-founder-line__photo--alt {
  background: linear-gradient(160deg, #c0392b, #a93226);
}

.am-founder-line__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.am-founder-line h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0.3rem 0 1rem;
}

.am-founder-line p:not(.am-founder__role) {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 58ch;
}

/* Partnerler — özgür tedarik ağı düzeni */
.am-partner-story {
  background: #f7f8fa;
}

.am-partner-open {
  padding: clamp(3rem, 7vw, 5.6rem) 0 clamp(2rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 78% 20%, rgba(26, 77, 109, 0.12), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
  overflow: hidden;
}

.am-partner-open__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: end;
}

.am-partner-open h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6.8vw, 6.1rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-width: 11ch;
}

.am-partner-open p:not(.am-kicker) {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.85;
  max-width: 42ch;
}

.am-partner-map {
  display: grid;
  gap: 1.5rem;
}

.am-partner-map__visual {
  position: relative;
  min-height: 190px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 22% 22%, rgba(196, 30, 58, 0.14), transparent 9rem),
    radial-gradient(circle at 78% 70%, rgba(26, 77, 109, 0.16), transparent 11rem),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(26, 77, 109, 0.1);
  box-shadow: 0 22px 70px rgba(21, 32, 50, 0.08);
  overflow: hidden;
}

.am-partner-map__visual::before,
.am-partner-map__visual::after {
  content: "";
  position: absolute;
  inset: 50% 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 77, 109, 0.35), transparent);
}

.am-partner-map__visual::after {
  transform: rotate(-26deg);
}

.am-partner-map__visual span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(26, 77, 109, 0.12);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(21, 32, 50, 0.1);
  backdrop-filter: blur(12px);
}

.am-partner-map__visual span:nth-child(1) { left: 7%; top: 14%; }
.am-partner-map__visual span:nth-child(2) { left: 38%; top: 38%; color: var(--red); }
.am-partner-map__visual span:nth-child(3) { right: 9%; top: 13%; }
.am-partner-map__visual span:nth-child(4) { right: 23%; bottom: 8%; color: var(--blue); }

.am-partner-open [data-reveal] {
  animation: amInitialReveal 0.8s cubic-bezier(.2,.8,.2,1) forwards;
}

.am-partner-marquee {
  display: flex;
  gap: 0;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #111827;
  color: #fff;
  border-block: 1px solid rgba(255,255,255,0.12);
}

.am-partner-marquee div {
  display: flex;
  flex: 0 0 auto;
  gap: 0.8rem;
  width: max-content;
  animation: amMarquee 42s linear infinite;
}

.am-partner-marquee span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 0.75rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

@keyframes amMarquee {
  to { transform: translateX(-100%); }
}

.am-partner-scope {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.am-partner-scope__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.am-partner-scope__sticky {
  position: sticky;
  top: calc(var(--header) + 2rem);
}

.am-partner-scope__sticky h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
  max-width: 10ch;
}

.am-partner-scope__items {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.am-partner-scope__items article {
  display: grid;
  grid-template-columns: 70px minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 2.5rem);
  align-items: baseline;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
}

.am-partner-scope__items span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
}

.am-partner-scope__items h3 {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.1vw, 1.7rem);
  line-height: 1.08;
}

.am-partner-scope__items p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0;
}

.am-partner-route {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.am-partner-route__head {
  max-width: 720px;
  margin-bottom: 2rem;
}

.am-partner-route__head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.am-partner-route__line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 80px rgba(21, 32, 50, 0.08);
}

.am-partner-route__line article {
  min-height: 230px;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,248,250,0.96));
  transition: background 0.3s ease, transform 0.3s ease;
}

.am-partner-route__line article:last-child {
  border-right: none;
}

.am-partner-route__line article:hover {
  background: #111827;
  color: #fff;
  transform: translateY(-8px);
}

.am-partner-route__line span {
  display: block;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 4rem;
}

.am-partner-route__line strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.55;
}

.am-partner-final {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(196, 30, 58, 0.11), transparent 28rem),
    #f7f8fa;
}

.am-partner-final__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.am-partner-final h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.am-partner-final ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.am-partner-final li {
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(21, 32, 50, 0.05);
  color: var(--ink-soft);
  font-weight: 800;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.am-partner-final li:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 30, 58, 0.24);
}

/* İletişim — özgür switchboard düzeni */
.am-contact-story {
  background: #f7f8fa;
}

.am-contact-open {
  padding: clamp(3rem, 7vw, 5.6rem) 0 clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 78% 20%, rgba(196, 30, 58, 0.09), transparent 28rem),
    radial-gradient(circle at 18% 82%, rgba(26, 77, 109, 0.1), transparent 30rem),
    linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}

.am-contact-open__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

.am-contact-open h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7.4vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  max-width: 9ch;
}

.am-contact-open__side p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.85;
  margin-bottom: 1.3rem;
}

.am-contact-open [data-reveal] {
  animation: amInitialReveal 0.8s cubic-bezier(.2,.8,.2,1) forwards;
}

.am-contact-switchboard {
  padding: 0 0 clamp(3rem, 6vw, 5rem);
}

.am-contact-switchboard__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 80px rgba(21, 32, 50, 0.08);
}

.am-contact-switchboard a {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
  border-right: 1px solid var(--line);
  color: var(--ink);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.am-contact-switchboard a:last-child {
  border-right: none;
}

.am-contact-switchboard a:hover {
  transform: translateY(-8px);
  background: #111827;
  color: #fff;
}

.am-contact-switchboard span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
}

.am-contact-switchboard strong {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.05;
}

.am-contact-switchboard em {
  color: var(--ink-muted);
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.55;
}

.am-contact-switchboard a:hover em {
  color: rgba(255,255,255,0.7);
}

.am-contact-compose {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: #fff;
  border-block: 1px solid var(--line);
}

.am-contact-compose__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.am-contact-aside-free {
  position: sticky;
  top: calc(var(--header) + 2rem);
}

.am-contact-aside-free h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 1.8rem;
}

.am-contact-facts {
  display: grid;
  border-top: 1px solid var(--line);
}

.am-contact-facts article {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.am-contact-facts span {
  display: block;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.am-contact-facts strong,
.am-contact-facts a {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.5;
}

.am-form-box--free {
  border-radius: 30px;
  box-shadow: 0 24px 80px rgba(21, 32, 50, 0.08);
}

.am-contact-flow {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.am-contact-flow .am-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.am-contact-flow article {
  padding: 1.25rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 46px rgba(21, 32, 50, 0.05);
}

.am-contact-flow span {
  display: inline-flex;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
}

.am-contact-flow p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

.am-service-cards .am-card {
  position: relative;
  overflow: hidden;
}

.am-service-cards .am-card::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -80%;
  width: 55%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent);
  transform: skewX(-18deg);
  transition: left 0.7s ease;
  pointer-events: none;
}

.am-service-cards .am-card:hover::after {
  left: 125%;
}

.am-service-cards .am-card:nth-child(2) {
  transition-delay: 0.08s;
}

.am-service-cards .am-card:nth-child(3) {
  transition-delay: 0.16s;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.8,.2,1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Toast */
.am-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #152032;
  color: #fff;
  padding: 0.85rem 1.35rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
  z-index: 300;
  pointer-events: none;
}

.am-toast.is-show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (max-width: 900px) {
  .am-home-hero {
    min-height: auto;
  }
  .am-home-hero__grid,
  .am-motion__grid,
  .am-subhero__grid,
  .am-about-open__grid,
  .am-about-manifesto__grid,
  .am-about-rhythm__line,
  .am-founder-line,
  .am-founder-line--reverse,
  .am-partner-open__grid,
  .am-partner-scope__grid,
  .am-partner-scope__items article,
  .am-partner-route__line,
  .am-partner-final__grid,
  .am-contact-open__grid,
  .am-contact-switchboard__grid,
  .am-contact-compose__grid,
  .am-contact-flow .am-wrap,
  .am-diagnostics__grid,
  .am-capability-grid,
  .am-partner-matrix,
  .am-process-line,
  .am-section-split,
  .am-duo-line,
  .am-duo-line--reverse {
    grid-template-columns: 1fr;
  }
  .am-section-split {
    display: grid;
  }
  .am-hero-stack {
    min-height: 520px;
    transform: none;
  }
  .am-home-hero__backdrop {
    opacity: 0.28;
  }
  .am-hero-console {
    right: 4%;
    top: auto;
    bottom: 5%;
  }
  .am-motion {
    height: auto;
  }
  .am-motion__sticky {
    position: relative;
    top: auto;
    height: auto;
    padding: 4rem 0;
  }
  .am-motion__visual {
    height: 460px;
  }
  .am-motion__progress {
    right: 1rem;
  }
  .am-capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .am-partner-matrix {
    grid-template-columns: repeat(2, 1fr);
  }
  .am-process-line::before {
    display: none;
  }
  .am-form-box--premium {
    position: relative;
    top: auto;
  }
  .am-about-manifesto__sticky {
    position: relative;
    top: auto;
  }
  .am-partner-scope__sticky {
    position: relative;
    top: auto;
  }
  .am-partner-route__line article {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .am-partner-route__line article:last-child {
    border-bottom: none;
  }
  .am-contact-aside-free {
    position: relative;
    top: auto;
  }
  .am-contact-switchboard a {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .am-contact-switchboard a:last-child {
    border-bottom: none;
  }
  .am-founder-line--reverse figure {
    order: 0;
  }
  .am-duo-line--reverse figure {
    order: 0;
  }
  .am-hero__grid,
  .am-about-grid,
  .am-grid-3,
  .am-founders,
  .am-contact-grid,
  .am-contact-quick,
  .am-band,
  .am-stats { grid-template-columns: 1fr; }
  .am-steps { grid-template-columns: repeat(2, 1fr); }
  .am-cta__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .am-shell { width: min(1120px, 100% - 1.5rem); }
  .am-wrap { width: min(1120px, 100% - 1.5rem); }
  .am-home-hero {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .am-home-hero__copy h1 {
    font-size: clamp(2.1rem, 13vw, 3.35rem);
    max-width: none;
  }
  .am-hero-stack {
    min-height: 410px;
    overflow: hidden;
  }
  .am-home-hero__brandline {
    border-radius: 18px;
    max-width: 100%;
  }
  .am-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .am-hero__actions .am-btn {
    width: 100%;
    justify-content: center;
  }
  .am-hero__meta {
    gap: 0.85rem 1.25rem;
  }
  .am-hero-stack__card--main {
    inset: 8% 0 10% 0;
  }
  .am-hero-stack__card--laser,
  .am-hero-stack__card--tools {
    width: 52%;
  }
  .am-hero-console {
    display: none;
  }
  .am-motion__copy h2,
  .am-flow__content h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }
  .am-motion__visual {
    height: 360px;
  }
  .am-flow {
    min-height: 70vh;
  }
  .am-proof-grid,
  .am-capability-grid,
  .am-partner-matrix,
  .am-network-card,
  .am-process-line {
    grid-template-columns: 1fr;
  }
  .am-subhero h1 {
    font-size: clamp(2.05rem, 12vw, 3.2rem);
  }
  .am-about-open h1 {
    font-size: clamp(2.4rem, 14vw, 3.6rem);
  }
  .am-partner-open h1 {
    font-size: clamp(2.3rem, 13vw, 3.5rem);
  }
  .am-contact-open h1 {
    font-size: clamp(2.5rem, 14vw, 3.8rem);
  }
  .am-partner-map__visual {
    min-height: 180px;
  }
  .am-partner-map__visual span {
    width: 76px;
    height: 76px;
    font-size: 0.72rem;
  }
  .am-about-cinema {
    width: min(100% - 1.5rem, 1360px);
    border-radius: 24px;
  }
  .am-about-rhythm__line {
    gap: 0.55rem;
  }
  .am-diagnostic-panel__top strong {
    font-size: 0.62rem;
  }
  .am-form__row { grid-template-columns: 1fr; }
  .am-steps { grid-template-columns: 1fr; }
  .am-motion__progress { display: none; }
  .am-brand-strip ul {
    gap: 0.45rem 0.65rem;
  }
  .am-contact-switchboard a {
    padding: 1.1rem 1rem;
  }
  .am-founder-line figure,
  .am-duo-line figure {
    border-radius: 20px;
  }
}
