/* ============================================================================
   OGƏLSİN — Ana səhifə stilləri (home-v2.css)
   ----------------------------------------------------------------------------
   REFAKTORING QEYDİ:
   Bu fayl əvvəllər 3 üst-üstə "pass" (patch) qatından ibarət, oxunması
   çətin, minifikasiya olunmuş tək sətir idi. İndi oxunaqlı, çoxsətirli
   formata açılıb və məntiqi bölmələrə ayrılıb.
   Kaskad SIRASI qorunub — vizual nəticə əvvəlki ilə TAM eynidir.
   Orijinal fayl saxlanılıb:  home-v2.original.css.bak
   ============================================================================ */

:root {
  --bg: #080809;
  --panel: #111012;
  --text: #f0edee;
  --muted: #aaa5a9;
  --red: #7a2638;
  --red2: #9b4858;
  --line: #372027;
  --gold: #75675c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Avenir Next","Segoe UI",Arial,sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

.skip {
  position: fixed;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  z-index: 1000;
  background: white;
  color: black;
  padding: 8px;
}

.skip:focus {
  transform: none;
}

header {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,9,.96);
  border-bottom: 1px solid #141214;
}

.logo {
  font-size: 20px;
  letter-spacing: .06em;
}

.head-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.head-actions>a {
  font-size: 25px;
  transform: rotate(-25deg);
}

.menu {
  width: 36px;
  height: 42px;
  background: 0;
  border: 0;
  padding: 7px;
  color: white;
}

.menu i {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px auto;
}

header nav {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  padding: 15px 25px 24px;
  background: #0d0c0d;
  border-bottom: 1px solid var(--line);
}

header nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #292329;
}

main>section {
  border-bottom: 1px solid var(--line);
}

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

h2 {
  font-weight: 400;
  line-height: 1.18;
}

.hero {
  height: 540px;
  position: relative;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-v3.jpg');
  background-size: cover;
  background-position: 58% 35%;
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(8,8,9,.97) 0%,rgba(8,8,9,.78) 38%,rgba(8,8,9,.06) 75%),linear-gradient(0deg,rgba(8,8,9,.15),transparent 50%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(92%,1160px);
  margin: auto;
  padding-top: 55px;
}

.hero h1 {
  font-size: 34px;
  line-height: 1.03;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}

.hero p {
  font-size: 14px;
  color: #c1bcbe;
  margin-bottom: 18px;
}

.btn {
  width: 245px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 12px;
  margin: 7px 0;
}

.primary {
  background: linear-gradient(90deg,#6a202f,#842c3f);
}

.outline {
  border: 1px solid var(--red);
}

.hero small {
  display: block;
  color: #8f898d;
  font-size: 11px;
  margin-top: 15px;
}

.gain {
  padding: 24px 4%;
}

.gain h2 {
  text-align: center;
  font-size: 19px;
}

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

.gain article {
  min-height: 88px;
  border: 1px solid #282227;
  border-radius: 7px;
  background: linear-gradient(135deg,#161316,#0c0b0c);
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 13px;
}

.gain article>b {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--red2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
}

.gain h3 {
  font-size: 14px;
  margin: 0 0 4px;
  font-weight: 400;
}

.gain p {
  font-size: 9px;
  color: #9e999c;
  margin: 0;
}

.role {
  padding: 28px 4% 15px;
  display: grid;
  grid-template-columns: .9fr 1.5fr;
  gap: 45px;
}

.role-title h2 {
  font-size: 23px;
}

.role blockquote {
  margin: 15px 0 0;
  color: var(--red2);
  font-weight: 600;
}

.role ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.role li {
  display: grid;
  grid-template-columns: 30px 1fr;
  margin-bottom: 8px;
  font-size: 12px;
  color: #a9a4a7;
}

.role li b {
  color: var(--red2);
  font-size: 17px;
  font-weight: 400;
}

.quiet {
  grid-column: 2;
  color: #7d787c;
  font-size: 10px;
}

.founder {
  height: 330px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  background: #0b0a0b;
}

.founder-photo {
  background: url('../images/founder-v3.jpg') center/cover no-repeat;
}

.founder>div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.overline {
  font-size: 15px;
  color: #d5d0d2;
}

.founder h2 {
  font-size: 23px;
}

.founder p:last-child {
  color: #a29ca0;
}

.trust {
  padding: 18px 4% 10px;
}

.trust h2 {
  text-align: center;
  font-size: 18px;
}

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

.trust article {
  min-height: 76px;
  border: 1px solid #282228;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 14px 20px;
  gap: 14px;
  background: #111012;
}

.trust article b {
  font-size: 34px;
  font-weight: 300;
}

.trust article span {
  font-size: 11px;
  color: #b3adb0;
}

.trust>p {
  text-align: center;
  color: #8d8589;
  font-size: 12px;
  margin: 10px 0 0;
}

.trust>p:first-letter {
  color: var(--red2);
}

.situations {
  padding: 14px 0 8px;
  overflow: hidden;
}

.situations h2 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.cards {
  display: flex;
  gap: 12px;
  overflow: hidden;
  padding: 0 4%;
}

.cards article {
  flex: 0 0 22%;
  text-align: center;
}

.cards p {
  font-size: 10px;
  color: #928c90;
}

.sprite,
.case-thumb,
.contact-photo {
  background-repeat: no-repeat;
}

.sprite {
  height: 112px;
  border-radius: 5px;
}

.s1 {
  background-position: 0 0;
}

.s2 {
  background-position: 50% 0;
}

.s3 {
  background-position: 100% 0;
}

.s4 {
  background-position: 0 100%;
}

.s5 {
  background-position: 50% 100%;
}

.s6 {
  background-position: 100% 100%;
}

.wide {
  width: 55%;
  margin: 8px auto 0;
}

.cases {
  padding: 16px 4% 12px;
}

.cases>h2 {
  font-size: 21px;
  margin-bottom: 3px;
}

.cases>p {
  font-size: 11px;
  color: #a19b9e;
}

.case-list {
  display: grid;
  gap: 6px;
}

.case-list details {
  border: 1px solid #695549;
  border-radius: 8px;
  background: linear-gradient(130deg,#151214,#0b0a0b);
  overflow: hidden;
}

.case-list summary {
  list-style: none;
  display: grid;
  grid-template-columns: 62px 200px 1fr 42px;
  min-height: 80px;
  align-items: center;
  cursor: pointer;
}

.case-list summary::-webkit-details-marker {
  display: none;
}

.case-list summary>b {
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg,#81283c,#5c1e2d);
  font-size: 26px;
  font-weight: 400;
}

.case-thumb {
  height: 80px;
}

.case-list h3 {
  font-size: 15px;
  padding-left: 25px;
  margin: 0;
}

.case-list summary i {
  width: 34px;
  height: 34px;
  border: 1px solid #555057;
  border-radius: 50%;
  position: relative;
}

.case-list summary i:before,
.case-list summary i:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 1px;
  background: white;
  left: 11px;
  top: 16px;
}

.case-list summary i:after {
  transform: rotate(90deg);
}

.case-list details[open] summary i:after {
  transform: none;
}

.case-body {
  border-top: 1px solid #30282c;
  padding: 14px 30px 10px 270px;
}

.case-body article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #2c272a;
}

.case-body article>span {
  width: 34px;
  height: 34px;
  border: 1px solid var(--red2);
  color: var(--red2);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.case-body h4 {
  color: var(--red2);
  font-size: 12px;
  margin-bottom: 3px;
}

.case-body p {
  color: #a9a4a7;
  font-size: 10px;
  margin: 0;
}

.case-body strong {
  color: #d45970;
}

.case-body small {
  display: block;
  color: #8f898d;
  font-size: 9px;
  padding: 10px 0;
}

.case-body.short {
  padding: 15px 28px;
}

.price {
  text-align: center;
  padding: 18px 4% 8px;
}

.price h2 {
  font-size: 18px;
  margin: 0 0 4px;
}

.price p {
  font-size: 10px;
  color: #948e92;
}

.price strong {
  color: #a23a4f;
}

.contact {
  height: 150px;
  margin: 0 4%;
  border: 1px solid #242024!important;
  border-radius: 5px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  overflow: hidden;
}

.contact>div:first-child {
  padding: 15px 20px;
}

.contact h2 {
  font-size: 20px;
}

.contact p {
  font-size: 10px;
  color: #a19b9e;
}

.contact-photo {
  background-position: 50% 100%;
  position: relative;
}

.contact-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,#111012,transparent 65%);
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 10px 6% 80px;
  color: #7e787c;
  font-size: 11px;
}

.sticky {
  position: fixed;
  z-index: 99;
  left: 4%;
  right: 4%;
  bottom: max(9px,env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 7px;
}

.sticky a {
  height: 42px;
  background: linear-gradient(90deg,#6c2131,#832b3e);
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 14px;
}

:focus-visible {
  outline: 2px solid #e06b82;
  outline-offset: 3px;
}

@media(min-width:900px) {
  body {
    max-width: 1280px;
    margin: auto;
    border-inline: 1px solid #181518;
  }

  .hero-copy {
    padding-top: 70px;
  }

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

  .hero {
    height: 600px;
  }

  .gain,
  .role,
  .trust,
  .cases {
    padding-inline: 5%;
  }

  .cards {
    padding-inline: 5%;
  }

}

@media(max-width:700px) {
  header {
    height: 52px;
    padding: 0 22px;
  }

  .logo {
    font-size: 17px;
  }

  header nav {
    top: 52px;
  }

  .hero {
    height: 380px;
  }

  .hero-copy {
    padding-top: 35px;
    width: 91%;
  }

  .hero-photo {
    background-position: 60% center;
  }

  .hero h1 {
    font-size: 28px;
    max-width: 290px;
  }

  .hero p {
    font-size: 11px;
    max-width: 270px;
  }

  .hero:after {
    background: linear-gradient(90deg,rgba(8,8,9,.98),rgba(8,8,9,.67) 48%,rgba(8,8,9,.03) 82%);
  }

  .btn {
    width: 232px;
    height: 36px;
    font-size: 11px;
  }

  .hero small {
    font-size: 9px;
  }

  .gain {
    padding: 18px 4% 14px;
  }

  .gain h2 {
    font-size: 16px;
  }

  .gain-grid {
    gap: 3px;
  }

  .gain article {
    padding: 7px;
    gap: 7px;
    min-height: 72px;
  }

  .gain article>b {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 22px;
  }

  .gain h3 {
    font-size: 11px;
  }

  .gain p {
    font-size: 7px;
  }

  .role {
    padding-top: 20px;
    grid-template-columns: .86fr 1.4fr;
    gap: 22px;
  }

  .role-title h2 {
    font-size: 16px;
  }

  .role blockquote {
    font-size: 10px;
  }

  .role li {
    font-size: 8px;
    margin-bottom: 5px;
    grid-template-columns: 26px 1fr;
  }

  .role li b {
    font-size: 12px;
  }

  .quiet {
    font-size: 7px;
  }

  .founder {
    height: 195px;
  }

  .founder>div:last-child {
    padding: 18px;
  }

  .overline {
    font-size: 10px;
  }

  .founder h2 {
    font-size: 15px;
  }

  .founder p:last-child {
    font-size: 10px;
  }

  .trust h2 {
    font-size: 14px;
  }

  .trust article {
    padding: 8px;
    gap: 8px;
    min-height: 62px;
  }

  .trust article b {
    font-size: 25px;
  }

  .trust article span {
    font-size: 8px;
  }

  .trust>p {
    font-size: 9px;
  }

  .situations h2 {
    font-size: 14px;
  }

  .cards {
    gap: 8px;
  }

  .cards article {
    flex-basis: 27%;
  }

  .sprite {
    height: 88px;
  }

  .cards p {
    font-size: 8px;
  }

  .wide {
    width: 53%;
    font-size: 9px;
    height: 32px;
  }

  .cases {
    padding-top: 12px;
  }

  .cases>h2 {
    font-size: 16px;
  }

  .cases>p {
    font-size: 9px;
  }

  .case-list summary {
    grid-template-columns: 48px 128px 1fr 34px;
    min-height: 65px;
  }

  .case-list summary>b {
    font-size: 20px;
  }

  .case-thumb {
    height: 65px;
  }

  .case-list h3 {
    font-size: 10px;
    padding-left: 14px;
  }

  .case-list summary i {
    width: 28px;
    height: 28px;
  }

  .case-list summary i:before,
  .case-list summary i:after {
    left: 8px;
    top: 13px;
  }

  .case-body {
    padding: 10px 14px 8px 175px;
  }

  .case-body article {
    grid-template-columns: 32px 1fr;
    gap: 8px;
  }

  .case-body article>span {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .case-body h4 {
    font-size: 9px;
  }

  .case-body p {
    font-size: 7px;
  }

  .case-body small {
    font-size: 7px;
  }

  .price h2 {
    font-size: 14px;
  }

  .price p {
    font-size: 8px;
  }

  .contact {
    height: 110px;
  }

  .contact>div:first-child {
    padding: 10px 14px;
  }

  .contact h2 {
    font-size: 14px;
  }

  .contact p {
    font-size: 8px;
  }

  footer {
    font-size: 9px;
    padding-bottom: 68px;
  }

  .sticky a {
    height: 36px;
    font-size: 11px;
  }

}

@media(max-width:430px) {
  .hero {
    height: 365px;
  }

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

  .gain article {
    display: block;
    text-align: center;
  }

  .gain article>b {
    margin: auto;
  }

  .gain p {
    display: none;
  }

  .role {
    gap: 14px;
  }

  .role-title h2 {
    font-size: 14px;
  }

  .case-list summary {
    grid-template-columns: 44px 100px 1fr 30px;
  }

  .case-body {
    padding-left: 14px;
  }

  .case-list h3 {
    font-size: 9px;
  }

  .cards article {
    flex-basis: 31%;
  }

}

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

  * {
    transition: none!important;
  }

}

body {
  max-width: none!important;
  width: 100%;
  border: 0!important;
  margin: 0;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .005em;
}

header {
  height: 72px;
  padding-inline: clamp(22px,4.2vw,72px);
}

.logo {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .075em;
}

.hero {
  height: clamp(620px,64vw,820px);
}

.hero-copy {
  width: 100%;
  padding: clamp(72px,8vw,118px) clamp(24px,7vw,112px) 0;
  margin: 0;
}

.hero h1 {
  font-size: clamp(44px,5vw,74px);
  max-width: 780px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -.035em;
  margin-bottom: 24px;
}

.hero p {
  font-size: clamp(16px,1.35vw,20px);
  line-height: 1.45;
  max-width: 640px;
  margin-bottom: 23px;
}

.hero .btn {
  width: min(100%,340px);
  height: 50px;
  font-size: 15px;
}

.hero small {
  font-size: 13px;
}

.gain,
.role,
.trust,
.cases,
.price {
  padding-inline: clamp(24px,5vw,84px);
}

.gain {
  padding-block: 38px 34px;
}

.gain h2 {
  font-size: clamp(24px,2.4vw,36px);
  margin-bottom: 24px;
}

.gain-grid {
  gap: 12px;
}

.gain article {
  min-height: 126px;
  padding: 20px;
  gap: 18px;
}

.gain article>b {
  width: 66px;
  height: 66px;
  flex-basis: 66px;
  font-size: 36px;
}

.gain h3 {
  font-size: 20px;
}

.gain p {
  font-size: 13px;
  line-height: 1.45;
}

.role {
  padding-block: 48px 34px;
  grid-template-columns: minmax(280px,.9fr) minmax(420px,1.55fr);
  gap: clamp(44px,7vw,110px);
}

.role-title h2 {
  font-size: clamp(30px,3.2vw,48px);
}

.role blockquote {
  font-size: 19px;
  line-height: 1.45;
}

.role li {
  grid-template-columns: 46px 1fr;
  font-size: 16px;
  margin-bottom: 13px;
}

.role li b {
  font-size: 22px;
}

.quiet {
  font-size: 13px;
}

.founder {
  height: clamp(410px,42vw,610px);
}

.founder>div:last-child {
  padding: clamp(38px,6vw,92px);
}

.overline {
  font-size: 17px;
  letter-spacing: .04em;
}

.founder h2 {
  font-size: clamp(30px,3.3vw,48px);
}

.founder p:last-child {
  font-size: 18px;
}

.trust {
  padding-block: 32px 20px;
}

.trust h2 {
  font-size: clamp(24px,2.6vw,38px);
  margin-bottom: 22px;
}

.trust-grid {
  gap: 10px;
}

.trust article {
  min-height: 112px;
  padding: 20px 28px;
}

.trust article b {
  font-size: 44px;
}

.trust article span {
  font-size: 15px;
}

.trust>p {
  font-size: 15px;
  margin-top: 16px;
}

.situations {
  padding-block: 26px 18px;
}

.situations h2 {
  font-size: clamp(24px,2.7vw,40px);
  margin-bottom: 24px;
}

.cards {
  padding-inline: clamp(24px,5vw,84px);
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.cards::-webkit-scrollbar {
  display: none;
}

.cards article {
  flex-basis: clamp(230px,23%,360px);
}

.sprite {
  height: clamp(150px,16vw,230px);
}

.cards p {
  font-size: 14px;
  line-height: 1.35;
}

.wide {
  height: 48px;
  width: min(560px,88%);
  font-size: 14px;
  margin-top: 16px;
}

.cases {
  padding-block: 32px 24px;
}

.cases>h2 {
  font-size: clamp(30px,3.2vw,48px);
}

.cases>p {
  font-size: 16px;
  margin-bottom: 24px;
}

.case-list {
  gap: 10px;
}

.case-list summary {
  grid-template-columns: 82px clamp(170px,24vw,360px) 1fr 60px;
  min-height: 112px;
}

.case-list summary>b {
  font-size: 32px;
}

.case-thumb {
  height: 112px;
}

.case-list h3 {
  font-size: clamp(17px,1.7vw,25px);
  padding-inline: 28px;
}

.case-list summary i {
  width: 42px;
  height: 42px;
}

.case-list summary i:before,
.case-list summary i:after {
  left: 15px;
  top: 20px;
}

.case-body {
  padding: 24px 44px 18px calc(82px + clamp(170px,24vw,360px) + 28px);
}

.case-body article {
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 14px 0;
}

.case-body article>span {
  width: 42px;
  height: 42px;
}

.case-body h4 {
  font-size: 17px;
}

.case-body p {
  font-size: 14px;
  line-height: 1.55;
}

.case-body small {
  font-size: 12px;
  padding-top: 16px;
}

.price {
  padding-block: 26px 18px;
}

.price h2 {
  font-size: clamp(24px,2.7vw,38px);
}

.price p {
  font-size: 15px;
}

.contact {
  height: clamp(210px,22vw,310px);
  margin: 0 clamp(24px,5vw,84px);
}

.contact>div:first-child {
  padding: clamp(25px,4vw,58px);
}

.contact h2 {
  font-size: clamp(28px,3vw,44px);
}

.contact p {
  font-size: 15px;
}

footer {
  padding-inline: clamp(24px,5vw,84px);
  font-size: 14px;
}

.sticky {
  left: clamp(16px,4vw,64px);
  right: clamp(16px,4vw,64px);
}

.sticky a {
  height: 50px;
  font-size: 15px;
}

@media(max-width:820px) {
  header {
    height: 58px;
    padding-inline: 20px;
  }

  .logo {
    font-size: 19px;
  }

  .head-actions {
    gap: 15px;
  }

  header nav {
    top: 58px;
    padding-inline: 20px;
  }

  .hero {
    height: 560px;
  }

  .hero-photo {
    background-position: 58% center;
  }

  .hero-copy {
    padding: 52px 20px 0;
  }

  .hero h1 {
    font-size: clamp(32px,6.2vw,45px);
    max-width: 500px;
    margin-bottom: 18px;
  }

  .hero p {
    font-size: clamp(14px,2.25vw,17px);
    max-width: 430px;
    margin-bottom: 20px;
  }

  .hero .btn {
    width: min(360px,66vw);
    height: 45px;
    font-size: 14px;
  }

  .hero small {
    font-size: 12px;
  }

  .hero:after {
    background: linear-gradient(90deg,rgba(8,8,9,.98),rgba(8,8,9,.78) 44%,rgba(8,8,9,.06) 83%);
  }

  .gain,
  .role,
  .trust,
  .cases,
  .price {
    padding-inline: 20px;
  }

  .gain {
    padding-block: 28px 25px;
  }

  .gain h2 {
    font-size: 24px;
  }

  .gain-grid {
    gap: 7px;
  }

  .gain article {
    min-height: 106px;
    padding: 13px;
    gap: 11px;
  }

  .gain article>b {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    font-size: 28px;
  }

  .gain h3 {
    font-size: 16px;
  }

  .gain p {
    font-size: 10.5px;
    display: block;
  }

  .role {
    padding-block: 34px 24px;
    grid-template-columns: .85fr 1.35fr;
    gap: 30px;
  }

  .role-title h2 {
    font-size: 25px;
  }

  .role blockquote {
    font-size: 14px;
  }

  .role li {
    grid-template-columns: 36px 1fr;
    font-size: 13px;
    margin-bottom: 9px;
  }

  .role li b {
    font-size: 17px;
  }

  .quiet {
    font-size: 11px;
  }

  .founder {
    height: 330px;
    grid-template-columns: 1.1fr .9fr;
  }

  .founder>div:last-child {
    padding: 28px;
  }

  .overline {
    font-size: 13px;
  }

  .founder h2 {
    font-size: 25px;
  }

  .founder p:last-child {
    font-size: 14px;
  }

  .trust {
    padding-block: 25px 16px;
  }

  .trust h2 {
    font-size: 23px;
  }

  .trust-grid {
    gap: 7px;
  }

  .trust article {
    min-height: 91px;
    padding: 13px 16px;
    gap: 12px;
  }

  .trust article b {
    font-size: 34px;
  }

  .trust article span {
    font-size: 12px;
  }

  .trust>p {
    font-size: 12px;
  }

  .situations {
    padding-block: 22px 14px;
  }

  .situations h2 {
    font-size: 23px;
    padding-inline: 20px;
  }

  .cards {
    padding-inline: 20px;
    gap: 11px;
  }

  .cards article {
    flex-basis: 27%;
  }

  .sprite {
    height: 135px;
  }

  .cards p {
    font-size: 11px;
  }

  .wide {
    height: 42px;
    font-size: 12px;
  }

  .cases {
    padding-block: 26px 20px;
  }

  .cases>h2 {
    font-size: 27px;
  }

  .cases>p {
    font-size: 13px;
  }

  .case-list summary {
    grid-template-columns: 64px 185px 1fr 44px;
    min-height: 88px;
  }

  .case-list summary>b {
    font-size: 26px;
  }

  .case-thumb {
    height: 88px;
  }

  .case-list h3 {
    font-size: 17px;
    padding-inline: 20px;
  }

  .case-list summary i {
    width: 34px;
    height: 34px;
  }

  .case-list summary i:before,
  .case-list summary i:after {
    left: 11px;
    top: 16px;
  }

  .case-body {
    padding: 18px 24px 15px 273px;
  }

  .case-body article {
    grid-template-columns: 44px 1fr;
    gap: 13px;
    padding: 11px 0;
  }

  .case-body article>span {
    width: 36px;
    height: 36px;
  }

  .case-body h4 {
    font-size: 14px;
  }

  .case-body p {
    font-size: 12px;
  }

  .case-body small {
    font-size: 10px;
  }

  .price {
    padding-block: 23px 15px;
  }

  .price h2 {
    font-size: 23px;
  }

  .price p {
    font-size: 12px;
  }

  .contact {
    height: 190px;
    margin-inline: 20px;
  }

  .contact>div:first-child {
    padding: 25px;
  }

  .contact h2 {
    font-size: 25px;
  }

  .contact p {
    font-size: 12px;
  }

  footer {
    padding-inline: 20px;
    font-size: 12px;
  }

  .sticky {
    left: 20px;
    right: 20px;
  }

  .sticky a {
    height: 46px;
    font-size: 14px;
  }

}

@media(max-width:520px) {
  .hero {
    height: 510px;
  }

  .hero-copy {
    padding-top: 38px;
  }

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

  .hero p {
    font-size: 14px;
  }

  .hero .btn {
    width: min(100%,310px);
  }

  .gain {
    padding-inline: 14px;
  }

  .gain h2 {
    font-size: 20px;
  }

  .gain-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gain article {
    min-height: 86px;
    text-align: left;
    display: flex;
  }

  .gain article>b {
    margin: 0;
  }

  .gain h3 {
    font-size: 17px;
  }

  .gain p {
    font-size: 12px;
  }

  .role {
    grid-template-columns: 1fr;
    padding-inline: 20px;
  }

  .role-title h2 {
    font-size: 27px;
  }

  .role blockquote {
    font-size: 16px;
  }

  .role li {
    font-size: 14px;
  }

  .quiet {
    grid-column: 1;
    font-size: 12px;
  }

  .founder {
    height: auto;
    grid-template-columns: 1fr;
  }

  .founder-photo {
    min-height: 250px;
  }

  .founder>div:last-child {
    padding: 30px 20px;
  }

  .founder h2 {
    font-size: 28px;
  }

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

  .trust article {
    min-height: 78px;
  }

  .situations h2 {
    font-size: 22px;
  }

  .cards article {
    flex-basis: 72%;
  }

  .sprite {
    height: 180px;
  }

  .cards p {
    font-size: 13px;
  }

  .wide {
    width: calc(100% - 40px);
  }

  .cases>h2 {
    font-size: 28px;
  }

  .case-list summary {
    grid-template-columns: 52px 105px 1fr 36px;
    min-height: 76px;
  }

  .case-list summary>b {
    font-size: 22px;
  }

  .case-thumb {
    height: 76px;
  }

  .case-list h3 {
    font-size: 13px;
    padding-inline: 12px;
  }

  .case-body {
    padding: 16px;
  }

  .case-body h4 {
    font-size: 15px;
  }

  .case-body p {
    font-size: 13px;
  }

  .case-body small {
    font-size: 11px;
  }

  .price h2 {
    font-size: 22px;
  }

  .price p {
    font-size: 13px;
  }

  .contact {
    height: 180px;
    grid-template-columns: 1.05fr .95fr;
  }

  .contact>div:first-child {
    padding: 20px 15px;
  }

  .contact h2 {
    font-size: 24px;
  }

  .contact p {
    font-size: 12px;
  }

  .sticky {
    left: 12px;
    right: 12px;
  }

  .sticky a {
    height: 48px;
  }

}

.head-actions>a {
  font-size: 0;
  transform: none;
}

.head-actions>a:before {
  content: "☎";
  font-family: Arial,sans-serif;
  font-size: 22px;
  font-weight: 400;
}

:root {
  --gutter: clamp(20px,5vw,84px);
  --hairline: rgba(155,72,88,.28);
  --soft-line: rgba(255,255,255,.09);
  --radius: 12px;
}

header {
  padding-inline: var(--gutter);
  background: rgba(8,8,9,.84);
  border-color: var(--hairline);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
}

.hero-copy {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.gain,
.role,
.trust,
.cases,
.price {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.cards {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.situations>h2 {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.contact {
  margin-left: var(--gutter);
  margin-right: var(--gutter);
}

footer {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.hero-photo {
  background-color: #0a090a;
  background-image: url('../images/hero-v3.jpg');
  background-size: auto 112%;
  background-position: right center;
  background-repeat: no-repeat;
  filter: saturate(.76) contrast(1.035);
}

.hero:after {
  background: linear-gradient(90deg,rgba(8,8,9,.99) 0%,rgba(8,8,9,.9) 32%,rgba(8,8,9,.38) 58%,rgba(8,8,9,.06) 82%),linear-gradient(0deg,rgba(8,8,9,.16),transparent 55%);
}

.founder-photo {
  background-size: cover;
  background-position: 42% center;
  filter: saturate(.78) contrast(1.025);
}

.sprite,
.case-thumb,
.contact-photo {
  background-image: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #141214;
  filter: saturate(.78) contrast(1.025);
}

.s1 {
  background-image: url('../images/cards/contract.webp');
  background-position: center 58%;
}

.s2 {
  background-image: url('../images/cards/property.webp');
  background-position: center;
}

.s3 {
  background-image: url('../images/cards/renovation.webp');
  background-position: center 58%;
}

.s4 {
  background-image: url('../images/cards/car.webp');
  background-position: center 60%;
}

.s5 {
  background-image: url('../images/cards/keys.webp');
  background-position: center;
}

.s6 {
  background-image: url('../images/cards/elderly.webp');
  background-position: center 42%;
}

.contact-photo {
  background-image: url('../images/cards/keys.webp');
  background-position: center 45%;
}

.sprite {
  height: auto;
  aspect-ratio: 16/10;
}

.case-thumb {
  height: 100%;
  min-height: inherit;
}

.contact-photo:after {
  background: linear-gradient(90deg,#111012 0%,rgba(17,16,18,.7) 22%,transparent 70%);
}

main>section {
  border-color: var(--hairline);
}

.gain article,
.trust article {
  border-color: var(--soft-line);
  border-radius: var(--radius);
  box-shadow: inset 0 1px rgba(255,255,255,.025);
}

.case-list details {
  border-color: rgba(117,103,92,.74);
  border-radius: var(--radius);
  box-shadow: 0 12px 42px rgba(0,0,0,.12);
  transition: border-color .25s ease,background-color .25s ease;
}

.case-list details[open] {
  border-color: rgba(155,72,88,.72);
  background: linear-gradient(130deg,#171316,#0b0a0b);
}

.btn {
  border-radius: 7px;
  transition: transform .22s ease,filter .22s ease,box-shadow .22s ease;
}

.primary {
  box-shadow: 0 10px 28px rgba(81,20,34,.24);
}

.logo,
h1,
h2,
h3,
h4 {
  font-feature-settings: "kern" 1,"liga" 1;
  text-rendering: optimizeLegibility;
}

.hero h1 {
  letter-spacing: -.043em;
}

.gain h2,
.situations h2 {
  letter-spacing: -.018em;
}

.role-title h2,
.founder h2,
.cases>h2,
.price h2,
.contact h2 {
  letter-spacing: -.027em;
}

.gain-grid,
.trust-grid {
  align-items: stretch;
}

.gain article,
.trust article {
  height: 100%;
}

.cards article {
  display: flex;
  flex-direction: column;
}

.cards p {
  min-height: 2.8em;
  margin-top: 10px;
}

.contact {
  border-color: var(--soft-line)!important;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0,0,0,.2);
}

@media(hover:hover) {
  .btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 14px 34px rgba(81,20,34,.34);
  }

  .gain article,
  .trust article,
  .cards article {
    transition: transform .28s ease,border-color .28s ease;
  }

  .gain article:hover,
  .trust article:hover {
    transform: translateY(-2px);
    border-color: rgba(155,72,88,.35);
  }

  .cards article:hover {
    transform: translateY(-3px);
  }

}

@media(max-width:820px) {
  :root {
    --gutter: 20px;
  }

  .hero-photo {
    background-size: auto 108%,cover;
    background-position: right center,center;
  }

  .founder-photo {
    background-position: 38% center;
  }

  .case-thumb {
    min-height: 88px;
  }

  .sprite {
    aspect-ratio: 16/10;
  }

}

@media(max-width:520px) {
  :root {
    --gutter: 16px;
  }

  .hero-copy {
    padding-top: 42px;
  }

  .hero-photo {
    background-size: auto 104%,cover;
    background-position: 60% center,center;
  }

  .hero:after {
    background: linear-gradient(90deg,rgba(8,8,9,.98),rgba(8,8,9,.76) 50%,rgba(8,8,9,.12) 87%);
  }

  .case-thumb {
    min-height: 76px;
  }

  .cards {
    padding-right: var(--gutter);
  }

  .contact {
    grid-template-columns: 1.08fr .92fr;
  }

  .sticky {
    left: 10px;
    right: 10px;
  }

}

@media(min-width:821px) {
  .sticky {
    display: none;
  }

  footer {
    padding-bottom: 40px;
  }

}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: none;
}

.logo span {
  display: block;
}

.situations-head {
  display: grid;
  grid-template-columns: 92px minmax(0,1fr) 92px;
  align-items: center;
  padding-inline: var(--gutter);
  margin-bottom: 24px;
}

.situations-head:before {
  content: "";
}

.situations-head h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(24px,2.7vw,40px);
  letter-spacing: -.018em;
}

.scroll-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.scroll-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: #111012;
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: border-color .2s ease,background-color .2s ease,opacity .2s ease,transform .2s ease;
}

.scroll-controls button:disabled {
  opacity: .28;
  cursor: default;
}

.cards {
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  -webkit-user-select: none;
  user-select: none;
  cursor: grab;
  padding-bottom: 8px;
}

.cards:active,
.cards.is-dragging {
  cursor: grabbing;
}

.cards.is-dragging {
  scroll-snap-type: none;
}

.cards article {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.cards:focus-visible {
  outline: 2px solid #d45b73;
  outline-offset: -2px;
}

@media(hover:hover) {
  .scroll-controls button:not(:disabled):hover {
    border-color: var(--red2);
    background: #21171b;
    transform: translateY(-1px);
  }

}

@media(max-width:820px) {
  .logo {
    gap: 8px;
  }

  .logo img {
    width: 30px;
    height: 30px;
  }

  .situations-head {
    grid-template-columns: 78px minmax(0,1fr) 78px;
    margin-bottom: 18px;
  }

  .situations-head h2 {
    font-size: 23px;
  }

  .scroll-controls button {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

}

@media(max-width:520px) {
  .logo {
    gap: 6px;
    letter-spacing: .045em;
  }

  .logo img {
    width: 26px;
    height: 26px;
  }

  .logo span {
    font-size: 15.5px;
  }

  .head-actions {
    gap: 11px;
  }

  .hero {
    height: 610px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.04;
    max-width: 350px;
  }

  .hero p {
    font-size: 13.5px;
    max-width: 310px;
  }

  .hero .btn {
    width: 100%;
    max-width: 350px;
    height: 48px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero-photo {
    background-position: 68% center,center;
  }

  .situations-head {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-inline: var(--gutter);
    margin-bottom: 14px;
  }

  .situations-head:before {
    display: none;
  }

  .situations-head h2 {
    grid-column: 1/-1;
    font-size: 22px;
  }

  .scroll-controls {
    grid-column: 2;
  }

  .scroll-controls button {
    width: 40px;
    height: 40px;
  }

  .cards article {
    flex-basis: 82%;
  }

}

.hero-photo {
  background-image: url('../images/hero-v3.jpg');
  background-size: auto 112%;
  background-position: right center;
  background-repeat: no-repeat;
  background-color: #0a090a;
}

.btn,
.sticky a,
.footer-wa {
  gap: 10px;
}

.sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 12px;
  overflow: hidden;
  line-height: 1;
  white-space: nowrap;
}

.case-list details.is-animating {
  overflow: hidden;
}

.case-list summary i:after {
  transition: transform .38s cubic-bezier(.22,1,.36,1), opacity .24s ease;
}

.case-list details.is-closing summary i:after {
  transform: rotate(90deg);
}

.wa-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
  flex: none;
}

.wa-icon:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-left: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  left: -1px;
  bottom: -1px;
  transform: rotate(-18deg);
}

.wa-icon:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 3px;
  border-bottom: 1.4px solid currentColor;
  border-radius: 50%;
  left: 5px;
  top: 6px;
  transform: rotate(28deg);
}

.phone-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: none;
  transform: rotate(-38deg);
}

.phone-icon:before {
  content: "";
  position: absolute;
  inset: 2px 4px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 4px 2px 7px 4px;
}

.phone-icon:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 7px;
  border-block: 2px solid currentColor;
  left: 3px;
  top: 4px;
}

.gain-icon,
.trust-icon,
.case-icon {
  position: relative;
  display: block;
  flex: none;
}

.gain-icon:before,
.gain-icon:after,
.trust-icon:before,
.trust-icon:after,
.case-icon:before,
.case-icon:after {
  content: "";
  position: absolute;
  display: block;
}

.icon-clock:before {
  inset: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-clock:after {
  width: 10px;
  height: 8px;
  left: 50%;
  top: 50%;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-8px);
}

.icon-calm:before {
  inset: 11px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-calm:after {
  inset: 17px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .7;
}

.icon-comfort:before {
  left: 12px;
  right: 12px;
  bottom: 15px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 7px 7px 3px 3px;
}

.icon-comfort:after {
  left: 17px;
  right: 17px;
  bottom: 22px;
  border-top: 2px solid currentColor;
  box-shadow: -7px 8px 0 -1px currentColor,7px 8px 0 -1px currentColor;
}

.trust-icon {
  width: 46px;
  height: 46px;
  color: #ded9db;
}

.icon-document:before {
  width: 25px;
  height: 31px;
  left: 9px;
  top: 6px;
  border: 1.7px solid currentColor;
  border-radius: 2px;
}

.icon-document:after {
  width: 14px;
  height: 1.5px;
  left: 15px;
  top: 15px;
  background: currentColor;
  box-shadow: 0 5px currentColor,0 10px currentColor;
}

.icon-payment:before {
  width: 27px;
  height: 31px;
  left: 8px;
  top: 6px;
  border: 1.7px solid currentColor;
  border-radius: 2px;
}

.icon-payment:after {
  width: 14px;
  height: 1.5px;
  left: 14px;
  top: 14px;
  background: currentColor;
  box-shadow: 0 5px currentColor,7px 13px 0 2px var(--panel);
}

.icon-person:before {
  width: 10px;
  height: 10px;
  left: 17px;
  top: 6px;
  border: 1.8px solid currentColor;
  border-radius: 50%;
}

.icon-person:after {
  width: 25px;
  height: 18px;
  left: 9px;
  bottom: 6px;
  border: 1.8px solid currentColor;
  border-radius: 14px 14px 3px 3px;
}

.privacy-icon {
  display: inline-block;
  width: 9px;
  height: 9px;
  border: 1px solid var(--red2);
  transform: rotate(45deg);
  margin-right: 12px;
}

.case-icon.icon-document:before {
  width: 18px;
  height: 23px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.case-icon.icon-document:after {
  width: 10px;
  left: 50%;
  top: calc(50% - 5px);
  transform: translateX(-50%);
  box-shadow: 0 4px currentColor,0 8px currentColor;
}

.case-icon.icon-work:before,
.case-icon.icon-work:after {
  width: 20px;
  height: 2px;
  background: currentColor;
  left: 50%;
  top: 50%;
  border-radius: 2px;
  transform-origin: center;
}

.case-icon.icon-work:before {
  transform: translate(-50%,-50%) rotate(45deg);
}

.case-icon.icon-work:after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

.case-icon.icon-result:before {
  width: 15px;
  height: 8px;
  left: 50%;
  top: 50%;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-50%,-58%) rotate(-45deg);
  transform-origin: center;
}

.info-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-style: normal;
  margin-right: 9px;
  color: #aaa4a7;
}

.case-body small {
  display: flex;
  align-items: center;
}

.footer-v2 {
  display: grid!important;
  grid-template-columns: 1.3fr 1fr .8fr .9fr;
  gap: clamp(30px,5vw,78px);
  align-items: start;
  padding: 56px var(--gutter) 46px!important;
  margin-top: 34px;
  border-top: 1px solid var(--hairline);
  color: #aaa5a9;
  font-size: 14px;
}

.footer-v2>div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  min-width: 0;
}

.footer-v2 .footer-brand p {
  max-width: 340px;
  margin: 6px 0;
}

.footer-v2 h2 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #f0edee;
  margin: 0 0 9px;
}

.footer-v2 strong {
  color: #f0edee;
  font-weight: 600;
}

.footer-v2 p,
.footer-v2 address {
  margin: 0;
  font-style: normal;
  color: #aaa5a9;
}

.footer-v2 a {
  transition: color .2s ease;
}

.footer-v2 a:hover {
  color: #fff;
}

.footer-v2 .logo {
  color: #f0edee;
  margin-bottom: 7px;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(155,72,88,.5);
  border-radius: 7px;
  color: #f0edee;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.social-list span {
  padding: 7px 10px;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  color: #c3bdc0;
  font-size: 12px;
}

.footer-note {
  margin-top: 14px!important;
  font-size: 12px!important;
  color: #716c70!important;
}

@media(max-width:820px) {
  .hero-photo {
    background-size: auto 108%;
    background-position: right center;
  }

  .footer-v2 {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding-top: 42px!important;
  }

}

@media(max-width:520px) {
  .hero-photo {
    background-size: auto 104%;
    background-position: 68% center;
  }

  .footer-v2 {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px var(--gutter) 92px!important;
  }

  .footer-v2 .footer-brand p {
    max-width: none;
  }

}
