
body {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: var(--color-bg);
  color: var(--color-dark);
  font-family: var(--font-main);
  font-size: var(--fs-body);
  line-height: 1.2;
  text-align: left;
  word-spacing: normal;
  scroll-behavior: smooth;
}

p {
  line-height: 1.6;
}

html { scroll-behavior: smooth; }
:root { --header-h: 72px; }
.anchor { scroll-margin-top: var(--header-h); }

.site-a-cap {
  position: relative;
    overflow: hidden;
  top: 0;
  z-index: 1000;
  background: #fff;
  width: 100%;
  background: #e5e2da;
  border-bottom-left-radius: clamp(10px, 6vw, 60px);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

@property --snake-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.site-a-cap__brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  width: 100%;
  isolation: isolate;
  border: 1px solid transparent;
  outline: none;
}

.site-a-cap__brand > *{
  position: relative;
  z-index: 2;
}

.site-a-cap__brand:hover {
  background-color: rgb(115, 115, 115, 0.1);
  border-radius: 60px;
}

.site-a-cap__brand::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;            
  z-index: 1;
  pointer-events: none;
  background: conic-gradient(
    from var(--snake-angle),
    transparent 0deg 320deg,                 
    rgba(166,124,0,0.25) 320deg 334deg,      
    #a67c00 334deg 344deg,                  
    #f1da7a 344deg 350deg,                   
    transparent 350deg 360deg               
  );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  opacity: 0;
}

.site-a-cap__brand:active::before{
  opacity: 1;
  animation: snake-run 3s linear infinite;
}

@keyframes snake-run{
  to { --snake-angle: 360deg; }
}

.site-a-cap__brand:focus-visible {
  border-radius: 60px;
  border: 1px solid black;
}

.site-a-cap__logo {
   width: 120px;
    height: auto;
    margin-left: 2%;
}

.site-a-cap__brand-text {
  display: flex;
  flex-direction: column;
}

.site-a-cap__brand-title {
  font-family: var(--font-title);
  font-size: var(--fs-h1);
  line-height: 1.1;
  font-weight: 600;
  color: var(--color-accent);
}

.site-a-cap__brand-tagline {
  display: none;
  font-size: var(--fs-small);
  font-weight: 600;
  margin-top: 10px;
}

.site-a-cap__container {
  display: flex;
  justify-content: center;
}

.main-menu {
  display: flex;
  align-items: end;
  justify-content: flex-end;
}

.site-a-cap_phone {
  position: relative;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  padding: 1%;
  border: 1px solid transparent;
}

.site-a-cap_phone:hover {
  background-color: rgb(115, 115, 115, 0.1);
  border-radius: 60px;
}

.site-a-cap_phone::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;          
  width: 100%;
  height: 2px;          
  background: black;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease;
}

.site-a-cap_phone:active::after {
  transform: scaleX(1);
}

.site-a-cap_phone:focus {
  outline: none;
}

.site-a-cap_phone:focus-visible {
  border: 1px solid black;
  border-radius: 60px;
}

.burger {
  background: grey;
  min-width: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  cursor: pointer;
}

.burger span {
  margin: 0px 11px 0px 11px;
  height: 4px;
  background: #000;
  border-radius: 2px;
}

.button-completion {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
  background: var(--color-bg-accent);
  text-align: center;
  min-width: 100px;
  height: 100%;
  padding: 5px 10px 5px 10px;
  color: var(--color-light);
  border: none;
  font-family: var(--font-alt);
  outline: none;
  font-weight: 600;
}

.button-completion::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,0,0,0.25) 80%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 1s ease;
}

.button-completion:hover::before{
  transform: translateX(100%);
}

.button-completion::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}

.button-completion:active::after{
  opacity: 1;
}

.button-completion:focus-visible {
  border: 1px solid black;
}

.main-nav {
  display: none; 
  position: absolute;
  top: 100%;           
  left: 0;
  width: 100%;
  background: #e5e2da;
  padding: 20px 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 999;
}

.main-nav.open {
  display: block;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

.menu-list a {
  position: relative;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  padding-left: 5px;
}

.menu-list a:hover {
  background-color: rgb(115, 115, 115, 0.1);
  border-radius: 60px;  
  border-right: 1px solid transparent;
}

.menu-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;          
  width: 100%;
  height: 1px;           
  background: black;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.menu-list a:active::after {
  transform: scaleX(1);
}

.menu-list a:focus {
  border: 1px solid transparent;
}

.menu-list a:focus-visible {
  border-radius: 60px;
  outline: 1px solid black;
}

.site-a-cap_phone {
  display: none;
}

.burger.active span:nth-child(1) {
  transform: translateY(10px) rotate(60deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-60deg);
}

.burger span {
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding-left: 10px;
}

.menu-has-sub.active .submenu {
  max-height: 200px; 
  margin-top: 6px;
}

.submenu-toggle {
  position: relative;
  display: block;
}

.submenu-toggle::after {
  content: "▼";
  position: absolute;
  left: 5%;
  transition: transform .3s;
}

.menu-has-sub.active .submenu-toggle::after {
  transform: rotate(180deg);
}

.submenu__address {
  font-style: normal;
}

.submenu a {
  border-bottom: 1px solid black;
}

.hero {
  margin-top: 4%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-overlay {
  order: 1;         
  text-align: center;
}

.hero-overlay_title {
  text-shadow: 0 -5px 7px gray;
  font-size: var(--fs-h1);
  font-weight: 600;
  font-family: var(--font-title);
  margin: 0 0 6px;
}

.hero-overlay_text-slogan {
  display: block;
  padding-left: 15px;
}

.hero-overlay_text {
  color: var(--color-accent);
  margin: 0;
}

.hero-logo {
  order: 2;
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.hero-note {
  display: none;
}

.curve {
  display: none;
}

.services {
  margin-top: 1%;
  padding: 5%;
  background: var(--color-bg-section);
  border-radius: 16px;
  box-shadow: inset 0 0 12px rgba(0,0,0,0.35);
}

.standard-block-parametr__title {
  font-family: var(--font-title);
  font-size: var(--fs-h2);
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 1%;
}

h5.services__subtitle {
  text-align: center;
}

.services__subtitle {
  font-size: var(--fs-body);
  color: var(--color-accent);
  padding-top: 5%;
  padding-bottom: 3%;
}

.services__block-result {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 5%;
}

.services__text {
  font-size: var(--fs-small);
  text-indent: 24px;
  hyphens: auto;
  word-break: normal;
  overflow-wrap: break-word;
}

.services__text,
.services__heading {
  line-height: 1.3;
  color: var(--color-dark);
}

.standard-block-parametr__heading {
  font-weight: 400;
  text-align: center;
}

.services__block-services {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px;
  margin: 10px 0;
}

.services__block-info {
  background: var(--color-small-bg-section);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
}


.services__block-icon {
  display: inline-block;
  background-color: rgba(206, 162, 119, 0.1);
  text-align: center;
  width: min-content;
  padding: clamp(0.625rem, 0.125rem + 2vw, 1.25rem);
  border-radius: 60px;
}

.services__block-info:nth-child(1) .services__block-icon {
 background-color: rgba(206, 162, 119, 0.1);
}

.services__block-info:nth-child(2) .services__block-icon {
 background-color: rgba(34, 153, 195, 0.1);
}

.services__block-info:nth-child(4) .services__block-icon {
 background-color: rgba(34, 153, 195, 0.1);
}

.services-icon {
  width: clamp(4.375rem, 2.375rem + 8vw, 6.875rem);
  height: clamp(4.375rem, 2.375rem + 8vw, 6.875rem);
}

.services-icon_check {
  width: 20px;
  height: 20px;
}

.problems {
  padding: 5% 3%;
}

.block__about-problems {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problems__block {
  background: var(--color-small-bg-section);
  padding: 5%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.07);
}

.problems__title {
  font-size: var(--fs-body);
  border-bottom: 1px solid black;
  padding-bottom: 15px;
  font-weight: 700;
  color: #7a5c20;
  text-align: center;
  margin-bottom: 12px;
}

.problems__label {
  margin: 8px 0 4px;
  color: var(--color-active);
}

.problems__text {
  line-height: 1.45;
  color: #1a1a1a;
}

.about-hr {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 1%;
}

.about__image {
  display: block;
  width: 100%;
  height: 800px;
  object-fit: cover;
}

.about-hr::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 0;
}

.about-hr__block-text {
  position: absolute;
  inset: 20px 16px;
  z-index: 1;
  color: #fff;
  padding-right: 20px;
}

.about-hr__text {
  font-size: var(--fs-small);
  margin: 0 0 10px;
}

.about-hr__more {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.about-hr__block-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.6));
  pointer-events: none;
  opacity: 1;
  transition: opacity .3s ease;
}

.about-hr__toggle {
  margin-top: 6px;
  padding: 8px 14px;
  background: rgba(0,0,0,.6);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.about-hr--open .about-hr__more {
  max-height: 1000px;
}

.about-hr--open .about-hr__block-text::after {
  opacity: 0;
}

.section__founder {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.founder__img {
  position: relative;
  width: 100%;
}

.founder-img__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.founder__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1),
    rgba(0,0,0,0.6)
  );
  z-index: 1;
}

.founder__block-text:nth-child(2) {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 2;
  color: #fff;
  text-shadow: var(--shadow-soft);
}

.founder__about-name {
  font-size: var(--fs-lead);
  color: var(--color-accent);
  border-bottom: 1px solid;
}

.founder__block-about {
  background: rgba(255,255,255,0.2);
  padding: 3%;
  border-radius: 10px;
  margin-bottom: 3%;
  font-family: var(--font-title);
}

.founder__about-me {
  background: rgba(255,255,255,0.2);
  padding: 3%;
  border-radius: 10px;
}

.founder__link {
  padding-left: 5%;
}

ul li::marker {
  color: var(--color-bg-accent);
}

.founder__list {
  padding-top: 3%;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stats__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-small-bg-section);
  padding: 5%;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.07);
  margin: 10px 10px 0 10px;
}

.stats__block{
    position: relative;
    overflow: hidden;
}

.about__icon--main{
    position: relative;
    z-index: 2;
    width: 0px; /* или свой размер */
}

.about__icon--bg{
    position: absolute;
    right: -30px;
    bottom: -20px;
    width: 330px;
    height: 330px;
    opacity: 0.06;
    z-index: 1;
    pointer-events: none;
}

.aabout__icon--bg{
    position: absolute;
    right: -400px;
    bottom: -170px;
    width: 360px;
    height: 360px;
    opacity: 0.06;
    z-index: 1;
    pointer-events: none;
}

.stats__block .change-text,
.stats__block .stats__title-text,
.stats__block .stats__text{
    position: relative;
    z-index: 2;
}




.about__icon {
  width: 110px;
  height: 90px;
}

.stats__title-text {
  text-align: center;
  font-weight: 600;
  font-size: var(--fs-body);
  padding: 0 0 5% 0;
}

.stats__text {
  line-height: 1.35;
  color: #1d1a16;
  text-align: center;
  font-weight: 200;
}

.change-text {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #C6932F;
  margin: 2%;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.offer {
  padding: 5% 3%;
}

.offer-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offer-container__card {
  background: var(--color-small-bg-section);
  padding: 5%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.07);
}

.offer-container__title {
  background: var(--color-bg-accent);
  color: #1d1a16;
  padding: 2% 2%;
  text-align: center;
  font-size: var(--fs-body);
  font-weight: 400;
  border-radius: 15px;
  margin-bottom: 12px;
}

.offer-container__text {
  line-height: 1.4;
  color: #1d1a16;
  text-align: left;
  text-indent: 24px;
  font-size: var(--fs-body);
}

.experience {
  padding: 5% 3%;
}

.experience-container {
  display: flex;
  flex-direction: column;
}

.experience-container__card {
  margin-top: 1%;
  padding: 1%;
  padding-left: 3%;
  background: linear-gradient(
    135deg,
    #3a3a3a 90%,
    #2c2c2c 10%
  );
  line-height: 1.4;
  font-size: var(--fs-body);
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  color: var(--color-light);
}

.experience__more {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.experience__toggle {
  margin-top: 12px;
  padding: 1% 2%;
  border-radius: 999px;
  border: none;
  background: black;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.experience--open .experience__more {
  max-height: 1000px;
}

.contact__form {
  padding: 5% 3%;
  text-align: center;
}

.contact-form__title {
  font-size: var(--fs-h2);
  color: var(--color-accent);
  margin-bottom: 8px;
}

.contact__form .standard-block-parametr__heading {
  line-height: 1.4;
  margin-bottom: 20px;
  padding: 0 4px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 3%;
  border-radius: 20px;
  box-shadow:
    inset 0 0 20px rgba(255,255,255,0.8),
    0 4px 14px rgba(0,0,0,0.15);
}

.form input,
.form textarea {
  width: 100%;
  padding: 3%;
  font-size: var(--fs-big-small);
  border-radius: 14px;
  border: 1px solid #ddd;
  background: #fafafa;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.08);
}

.form textarea {
  min-height: 110px;
  resize: none;
}

.contact-form_button {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
  margin-top: 2%;
  padding: 4%;
  width: 100%;
  background: var(--color-bg-accent);
  border-radius: 50px;
  border: none;
  font-size: var(--fs-base);
  font-weight: 600;
  color: #000;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  outline: none;
}

.contact-form_button::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,0,0,0.25) 80%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 1s ease;
}

.contact-form_button:hover::before{
  transform: translateX(100%);
}

.contact-form_button::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}

.contact-form_button:active::after{
  opacity: 1;
}

.contact-form_button:focus-visible {
  border: 1px solid black;
}

.form-consent {
  display: flex;
  gap: 1%;
}

.form-consent input[type="checkbox"] {
  transform: scale(1.5);
}

.button-approval {
  display: inline-block;
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  
}

.form-consent__text {
  font-size: var(--fs-supersmall);
}

.form {
  position: relative;
}

.form-success {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10000px;
  background: transparent;
  color: #1a7f37;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.form-success.is-visible {
  opacity: 1;
}

.footer {
  padding: 3%;
  background: #f5f0e5;
  border-radius: 30px 30px 0 0;
  box-shadow:
    inset 0 0 25px rgba(255,255,255,0.8),
    0 4px 16px rgba(0,0,0,0.2);
}

.footer__one-floor {
  display: flex;
  justify-content: space-between;
}

.footer__two-floor {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  background: inherit;
  margin-top: 2%;
  border-top: 2px solid black;
  min-height: 150px;
  width: 100%;
  border-top-right-radius: 100px;
  padding: 2%;
  gap: 30px;
}

.footer__two-floor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.0) 0%,
    rgba(0, 0, 0, 0.35) 100%,
    rgba(0, 0, 0, 0.7) 120%
  );
  pointer-events: none;
  border-top-right-radius: 100px;
}

.nickname_developer {
  width: 20%;
  height: 20%;
  position: relative;
  z-index: 1;
  padding-top: 10%;
}

.two-floor__text {
  font-size: var(--fs-supersmall);
  font-family: var(--font-main);
}

.two-flooor__conf{
  display: inline;              
  font-weight: 600;
  color: #000;
  text-decoration: none;
  position: relative;
  padding: 0;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;   
  background-size: 0 2px;        
  transition: background-size 1s ease;
}

.two-flooor__conf:hover{
  background-color: rgba(115,115,115,0.1);
  border-radius: 60px;
}

.two-flooor__conf:active{
  background-size: 100% 2px;
}

.two-flooor__conf:focus-visible{
  outline: none;
  border: 1px solid #000;
  border-radius: 60px;
}

.site-a-cap__brand-footer {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #000;
  isolation: isolate;
  border: 1px solid transparent;
  outline: none;
}

.site-a-cap__brand-footer > *{
  position: relative;
  z-index: 2;
}

.site-a-cap__brand-footer:hover {
  background-color: rgb(115, 115, 115, 0.1);
  border-radius: 60px;
}

.site-a-cap__brand-footer::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;            
  z-index: 1;
  pointer-events: none;
  background: conic-gradient(
    from var(--snake-angle),
    transparent 0deg 320deg,                 
    rgba(166,124,0,0.25) 320deg 334deg,      
    #a67c00 334deg 344deg,                   
    #f1da7a 344deg 350deg,                   
    transparent 350deg 360deg                
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
}

.site-a-cap__brand-footer:active::before{
  opacity: 1;
  animation: snake-run 3s linear infinite;
}

@keyframes snake-run{
  to { --snake-angle: 360deg; }
}

.site-a-cap__brand-footer:focus-visible {
  border-radius: 60px;
  border: 1px solid black;
}

.site-a-cap__brand-tagline-footer {
  display: none;
}

.footer-contacts {
  display: none; 
}

.footer__group {
  font-size: var(--fs-body);
}

.footer-contacts__text {
  font-size: var(--fs-small);
  font-style: normal;
  margin-top: 2%;
}

.site-a-cap__mail {
  position: relative;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  padding: 1%;
  border: 1px solid transparent;
}

.site-a-cap__mail:hover {
  background-color: rgb(115, 115, 115, 0.1);
  border-radius: 60px;
}

.site-a-cap__mail::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;          
  width: 100%;
  height: 2px;           
  background: black;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease;
}

.site-a-cap__mail:active::after {
  transform: scaleX(1);
}

.site-a-cap__mail:focus {
  outline: none;
}

.site-a-cap__mail:focus-visible {
  border: 1px solid black;
  border-radius: 60px;
}

.google_address {
  position: relative;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  border: 1px solid transparent;
}

.google_address:hover {
  background-color: rgb(115, 115, 115, 0.1);
  border-radius: 60px;
}

.google_address::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;          
  width: 100%;
  height: 2px;           
  background: black;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease;
}

.google_address:active::after {
  transform: scaleX(1);
}

.google_address:focus {
  outline: none;
}

.google_address:focus-visible {
  border: 1px solid black;
  border-radius: 60px;
}

.footer-group {
  font-size: var(--fs-small);
  font-weight: 600;
  margin-bottom: 8px;
}

.footer__socials {
  display: flex;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.socials__link {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transition: transform .2s ease;
}

.socials__link:hover {
  transform: scale(1.1);
}

.icon {
  width: 22px;
  height: 22px;
  fill: #000;
}

.two-floor__block-about {
  padding: 0px 6% 0 0%;
}

@media (min-width: 768px) {
body {
  font-size: var(--fs-big-small);
}  

.services__block-services {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.site-a-cap__brand-tagline {
  display: block;
}

.about-hr__text {
  font-size: var(--fs-body);
  margin-bottom: 5%;
  text-indent: 24px;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

}

@media (min-width: 992px) {
  .burger {
    display: none;
  }

  .main-nav {
    display: flex;
    position: static;
    box-shadow: none;
    background: transparent;
  }

  .main-nav.open {
    display: none;
  }

  .submenu {
    display: none;
  }

  .site-a-cap__container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    word-spacing: normal;  
    white-space: nowrap;   
    gap: 40px;
  }

  .menu-list a {
    border-right: 1px solid black;
    padding-right: 10px;
  }

  .site-a-cap {
    position: relative;
    justify-content:flex-start;
    border-bottom-right-radius: 40px;
    gap: 50px;
  }
  
  .submenu-toggle::after  {
    display: none;
  }

.button-completion {
  width: 150px;
  border-radius: 20px 0px 0px;
  border-bottom-right-radius: 40px;
  font-weight: 600;
  height: 50px;
}

.site-a-cap_phone {
  display: inline-block;
}

.main-menu {
  gap: 20px;
  height: 100%;
}

.block__about-problems {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.offer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.footer-contacts {
  display: inline-block;
  padding-top: 1%;
}


.footer__two-floor {
  display: flex;
  flex-direction: row;
}



}

@media (min-width: 1024px) {
  body { 
  max-width: 1740px;
}

  .hero {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    min-height: 940px;  
    margin-top: 20px;       
  }

  .hero-logo {
    position: absolute;
    top: 0;
    right: 0;
    width: 65.9%;                
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-bottom-left-radius: 45% 45%; 
    display: block;
  }

  .hero-overlay {
    position: relative;
    z-index: 2;
    margin: 5% auto 0;
    padding-left: 11%;
    text-align: center;
  }

  .hero-overlay_title {
    margin: 0 0 12px;
  }

  .hero-overlay_text-slogan {
    display: inline;
    color: var(--color-bg);
  }

  .hero-overlay_text {
    margin: 0;
    padding-left: 25%;
    color: var(--color-light);
  }

  .hero-note {
    display: inline-block;
    position: absolute;
    left: 4%;
    top: 45%;
    transform: translateY(-50%);
    max-width: 260px;
    text-align: center;
    z-index: 2;
  }

  .curve {
    display: inline-block;
    position: absolute;
    top: 20px;
    right: clamp(-150px, calc(-50px + (-150 + 50) * ((100vw - 1024px) / (1400 - 1024))), -50px);
    width: 200px;
    height: 260px;
  }

  .hero-note_text {
    position: relative;
    margin: 0;
    font-family: var( --font-title);
    font-size: var(--fs-h2);
  }

.hero-note_accent {
  font-weight: 600;
}

.about-hr {
  background-color: rgb(115, 115, 115, 0.3);
  border-radius: 24px;
  border-top-left-radius: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-hr::before {
  display: none;
}

.about-hr__block-text::after {
  display: none;
}

.about-hr__block-text {
  position: relative;
  color: black;
}

.about__image {
  border-radius: 100px 0 340px 0px;
}

.founder__img::after {
  display: none;
}

.section__founder {
  display: flex;
  flex-direction: row-reverse;
}

.founder__block-text:nth-child(2) {
  position: relative;
  display: inline-block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform:translateX(0);
  width: 100%;
  color: black;
  text-shadow: var(--shadow-soft);
  margin: 3%;
}

.founder__list {
  color: white;
}

.founder__block-about {
   background: linear-gradient(
    135deg,
    #3a3a3a 40%,
    #2c2c2c 60%
  );
  color: #f5f1e8;
}

.founder-img__img {
  border-radius: 30px 150px 0px 200px;
}

.founder__about-me {
  background: linear-gradient(
    135deg,
    #3a3a3a 50%,
    #2c2c2c 50%
  );
}

.founder__title {
  background: var(--color-bg-accent);
  font-weight: 600;
  padding: 5%;
  margin: 1%;
  border-radius: 10px;
}

.founder__title p {
  text-align: center;
  color: var(--color-light);
  font-family: var(--font-title);
  letter-spacing: 0.04em;
}

ul li::marker {
  font-size: 1.8em;
}

.founder__list {
  padding-top: 1%;
}

.footer {
  padding: 0;
  border-radius: 70px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
}

.site-a-cap__brand-footer p {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-a-cap__brand-tagline-footer {
  display: inline-block;
  font-size: var(--fs-small);
}

.footer-social {
  padding: 1% 5% 0px 0px;
}

}






.page-privacy .content {
  padding: 5%;
  color: rgb(56, 56, 55);
  background: rgb(156, 155, 154, 0.4);
  font-family: var(--font-alt);
}

.page-privacy .main-title {
  font-size: var(--fs-h1);
}

.page-privacy .title {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: var(--fs-h2);
}

.page-privacy li {
  margin-left: 7%;
}

ol li::marker {
  font-size: 1.5em;
  font-weight: 600;
}

.page-privacy .text {
  font-size: var(--fs-body);
}

