/*==================================
Глобальные переменные и стили
===================================*/
:root {
  --color-white: #ffffff;
  --color-mint: #a6ff70;
  --color-sand: #d6a461;
  --color-dark-blue: #002554;
  --color-blue: #003a70;
  --color-green: #78d64b;

  --text-main: #002554;
  --text-soft: #4c4c4c;
  --bg-main: #f6f3ed;

  --font-head: 'Montserrat', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
}

::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: #001a3a; }
::-webkit-scrollbar-thumb { 
  background: linear-gradient(180deg, transparent 0%, var(--color-sand) 35%, var(--color-sand) 65%, transparent 100%); 
  border-radius: 10px; 
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: #002554;
  color: var(--text-main);
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(166, 255, 112, 0.10), transparent 18%),
    radial-gradient(circle at 82% 22%, rgba(0, 88, 160, 0.28), transparent 22%),
    radial-gradient(circle at 70% 80%, rgba(214, 164, 97, 0.12), transparent 18%),
    linear-gradient(145deg, #00142e 0%, #002554 45%, #003a70 75%, #001f45 100%);
}

.page::before {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 10%, rgba(214,164,97,0.12), transparent 18%),
    radial-gradient(circle at 12% 14%, rgba(255,255,255,0.10), transparent 16%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.07), transparent 14%),
    radial-gradient(circle at 68% 76%, rgba(255,255,255,0.04), transparent 14%);
  filter: blur(10px);
}

.page::after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background:
    conic-gradient(
      from 210deg at 18% 22%,
      transparent 0deg,
      rgba(255,255,255,0.05) 18deg,
      transparent 38deg
    ),
    conic-gradient(
      from 160deg at 84% 20%,
      transparent 0deg,
      rgba(214,164,97,0.08) 16deg,
      transparent 34deg
    ),
    conic-gradient(
      from 320deg at 72% 82%,
      transparent 0deg,
      rgba(255,255,255,0.035) 12deg,
      transparent 28deg
    );
  filter: blur(26px);
  opacity: 0.9;
}

.container {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}

@media (max-width: 770px) {
  .page { padding: 14px; }
}


/*==================================
Блики
===================================*/
@keyframes tochkaPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(214, 164, 97, 0);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.18);
    box-shadow: 0 0 0 10px rgba(214, 164, 97, 0.18);
  }
}

@keyframes liniyaBlesk {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  15% {
    opacity: 0.9;
  }
  85% {
    opacity: 0.9;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}




@keyframes liniyaBleskVertical {
  0% {
    transform: translateY(-120%);
    opacity: 0;
  }
  15% {
    opacity: 0.9;
  }
  85% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(120%);
    opacity: 0;
  }
}
/*==================================
1 БЛОК (Hero)
===================================*/
.hero {
  background: linear-gradient(180deg, #fffdf8 0%, #fcf7ee 100%);
  border: 1px solid rgba(214, 164, 97, 0.40);
  border-radius: 32px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
  padding: 40px;
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 0px;
  padding-right: 20px;
  padding-bottom: 0px;
  padding-left: 16px;
  border: 1px solid rgba(214, 164, 97, 0.55);
  background: rgba(214, 164, 97, 0.10);
  color: var(--color-dark-blue);
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  overflow: visible;
}

.badge-logo {
  padding: 4px;
  height: 50px;
  width: auto;
  display: block;
  position: relative;
  top: 0px;
}

h1 {
  margin: 0;
  max-width: 660px;
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.hero-text {
  margin-top: 24px;
  max-width: 760px;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.7;
  color: var(--text-soft);
  font-family: var(--font-body);
  font-weight: 500;
}

.hero-note {
  margin-top: 28px;
  max-width: 620px;
  padding: 20px 24px;
  border: 1px solid rgba(214, 164, 97, 0.65);
  background: linear-gradient(135deg, rgba(214,164,97,0.14), rgba(255,255,255,0.95));
  border-radius: 24px;
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.5;
  color: var(--color-dark-blue);
  font-family: var(--font-head);
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
 }

.hero-photo {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 32px;
  border: 1px solid rgba(214, 164, 97);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); 
}

.hero-form {
  margin-top: 28px;
  max-width: 480px;
  }


.hero-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: center;
}


.hero-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(214, 164, 97, 0.45);
  background: rgba(255, 255, 255, 0.96);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  box-sizing: border-box;
  outline: none;
  transition: 0.2s ease;
}

.hero-input::placeholder {
  color: #7a7a7a;
}

.hero-input:focus {
  border-color: var(--color-sand);
  box-shadow: 0 0 0 4px rgba(214, 164, 97, 0.14);
}

.hero-submit {
  border: none;
  padding: 14px 22px;
  border-radius: 16px;
  font-size: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  background: var(--color-dark-blue);
  color: var(--color-white);
  box-shadow: 0 12px 28px rgba(0, 37, 84, 0.24);
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

.hero-submit:hover {
  transform: translateY(-2px);
}

@media (max-width: 770px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid > div:first-child {
    order: 1;
  }

  .visual-wrap {
    order: 2;
  }

  .hero-form {
    order: 3;
  }	
	
	
  .hero-form-grid {
    grid-template-columns: 1fr;
  }
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.visual-wrap {
  position: relative;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}

.visual-glow {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(0,37,84,0.12),
    rgba(255,255,255,0),
    rgba(214,164,97,0.22)
  );
  filter: blur(30px);
}

.visual-box {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}



@media (max-width: 770px) {
  .hero { padding: 24px; }
  .hero-photo { height: 340px; }
  .hero-grid { grid-template-columns: 1fr; }
}


/*==================================
2 БЛОК (Почему выбирают нас)
===================================*/
.problems-section {
  margin-top: 28px;
  background: linear-gradient(180deg, #fffdf8 0%, #fcf7ee 100%);
  border: 1px solid rgba(214, 164, 97, 0.40);
  border-radius: 32px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.16);
  padding: 40px;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}

.problems-title {
  margin: 0 auto; 
  text-align: center; 
  max-width: 760px;
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-main);
  padding-bottom: 10px;
}

.problems-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 32px;
}

.problem-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid rgba(214, 164, 97, 0.38);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
}

.problem-icon {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(214, 164, 97, 0.35);
  background: linear-gradient(180deg, #fff8ec 0%, #f8efdf 100%);
  font-size: 28px;
}

.problem-content h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.2;
  color: var(--text-main);
}

.problem-content p {
  margin: 12px 0 0;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
  color: var(--text-soft);
}

@media (max-width: 700px) {
  .problems-grid { grid-template-columns: 1fr; }
  .problems-section { padding: 24px; margin-top: 18px; }
  .problem-card { padding: 20px; gap: 14px; }
  .problem-icon { width: 52px; height: 52px; font-size: 24px; }
}


/*==================================
3 БЛОК (Баланс сторон / Диаграмма)
===================================*/
.balance-section {
  margin-top: 28px;
  background: linear-gradient(180deg, #fffdf8 0%, #fcf7ee 100%);
  border: 1px solid rgba(214, 164, 97, 0.40);
  border-radius: 32px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.16);
  padding: 40px;
  position: relative;
  z-index: 2;
}

.balance-title {
  margin: 0 auto;
  text-align: center;
  max-width: 760px;
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.venn-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.circle-left {
  fill: rgba(255, 255, 255, 0.14);
  stroke: rgba(101, 114, 126, 0.75);
  stroke-width: 3;
}

.circle-right {
  fill: rgba(255, 255, 255, 0.14);
  stroke: rgba(193, 167, 104, 0.85);
  stroke-width: 3;
}

.circle-overlap {
  fill: rgba(214, 164, 97, 0.22);
}

.venn-center-copy {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.08;
  fill: #002554;
}

.venn-item {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  fill: #2f2f2f;
}

.bullet-left { fill: var(--color-sand); }
.bullet-right { fill: #4c4c4c; }

.venn-svg-wrap {
  position: relative;
  margin-top: 34px;
  width: 100%;
}

.venn-side-title {
  position: absolute;
  bottom: 20px;
  width: clamp(120px, 18vw, 220px);
  font-family: var(--font-head);
  font-size: clamp(15px, 2vw, 22px);
  line-height: 1.12;
  font-weight: 700;
  color: var(--text-main);
  z-index: 6;
}

.venn-side-title-left { left: 40px; text-align: left; }
.venn-side-title-right { right: 40px; text-align: right; }

.venn-person {
  position: absolute;
  z-index: 6;
  width: clamp(55px, 12vw, 150px);
  height: auto;
  object-fit: contain;
  display: block;
}

.venn-person-left { left: 40px; bottom: 95px; }
.venn-person-right { right: 40px; bottom: 95px; }

@media (max-width: 770px) {
  .venn-person-left { left: 5px; bottom: 45px; }
  .venn-person-right { right: 5px; bottom: 45px; }
  .venn-side-title { bottom: -22px; }
  .balance-section {
    margin-top: 18px;
    padding-top: 24px;
    padding-bottom: 74px;
  }
}

@media (max-width: 700px) {
  .venn-center-copy { font-size: 24px; }
  .venn-item { font-size: 18px; }
  
}

@media (max-width: 500px) {
  .balance-title { padding-bottom: 10px; }
  .balance-section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .venn-svg-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    row-gap: 20px; 
    justify-items: center; 
    align-items: center; 
    margin-top: 20px;
    overflow: visible; 
  }
  .venn-person, .venn-side-title, .venn-svg {
    position: static;
    margin: 0;
    transform: none;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .venn-person {
    width: clamp(80px, 18vw, 120px); 
    height: auto;
    max-width: 120px;
  }
  .venn-person-left { grid-column: 1; grid-row: 1; }
  .venn-person-right { grid-column: 2; grid-row: 1; }
  .venn-side-title {
    width: 100%;
    max-width: none;
    text-align: center;
    padding: 0 5px;
    font-size: clamp(16px, 4vw, 18px); 
  }
  .venn-side-title-left { grid-column: 1; grid-row: 2; text-align: center; }
  .venn-side-title-right { grid-column: 2; grid-row: 2; text-align: center; }
  .venn-svg {
    grid-column: 1 / 3; 
    grid-row: 3;        
    width: 150%;        
    max-width: none;
    margin-top: 15px; 
  }
}


/*==================================
4 БЛОК (Что получает Ваш класс)
===================================*/
.format-section {
  margin-top: 28px;
  background: linear-gradient(180deg, #fffdf8 0%, #fcf7ee 100%);
  border: 1px solid rgba(214, 164, 97, 0.40);
  border-radius: 32px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.16);
  padding: 40px;
  position: relative;
  z-index: 2;
}

.format-title {
  margin: 0 auto;
  text-align: center;
  max-width: 900px;
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.format-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.format-column {
  position: relative;
  padding: 96px 22px 24px;
  border: 1px solid rgba(214, 164, 97, 0.38);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
}

.format-column-title {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(214, 164, 97, 0.45);
  background: linear-gradient(180deg, #f9f5eb 0%, #f1ead8 100%);
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-main);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.format-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.format-item {
  padding: 18px 18px;
  border: 1px solid rgba(214, 164, 97, 0.28);
  border-radius: 18px;
  background: #ffffff;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.45;
  font-weight: 500;
  color: #2f2f2f;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
}

@media (max-width: 980px) {
  .format-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .format-section { margin-top: 18px; padding: 24px; }
  .format-column { padding: 86px 18px 18px; }
  .format-column-title {
    top: 18px;
    left: 18px;
    right: 18px;
    padding: 14px 14px;
    border-radius: 16px;
  }
  .format-items { gap: 12px; }
  .format-item { padding: 16px 14px; }
}


/*==================================
5 БЛОК (Таймлайн / Программа)
===================================*/
.timeline-section {
  margin-top: 28px;
  background: linear-gradient(180deg, #fffdf8 0%, #fcf7ee 100%);
  border: 1px solid rgba(214, 164, 97, 0.40);
  border-radius: 32px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.16);
  padding: 40px;
  position: relative;
  z-index: 2;
}

.timeline-title {
  margin: 0 auto;
  text-align: center;
  max-width: 820px;
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.timeline-wrap {
  position: relative;
  margin-top: 40px;
  
}

.timeline-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 520px;
}

.timeline-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b99549 0%, #eadcb3 50%, #b99549 100%);
  transform: translateY(-50%);
  z-index: 0;
  overflow: hidden;
}

.timeline-line::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 740px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0.85) 50%,
    rgba(255,255,255,0.15) 80%,
    rgba(255,255,255,0) 100%
  );
  filter: blur(4px);
  animation: liniyaBlesk 6.8s linear infinite;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #efe3bf;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
  z-index: 3;
}
.timeline-step:nth-child(1) .timeline-dot { animation: tochkaPulse 6.4s ease-in-out infinite; animation-delay: 0s; }
.timeline-step:nth-child(2) .timeline-dot { animation: tochkaPulse 6.4s ease-in-out infinite; animation-delay: 0.4s; }
.timeline-step:nth-child(3) .timeline-dot { animation: tochkaPulse 6.4s ease-in-out infinite; animation-delay: 0.8s; }
.timeline-step:nth-child(4) .timeline-dot { animation: tochkaPulse 6.4s ease-in-out infinite; animation-delay: 1.2s; }
.timeline-step:nth-child(5) .timeline-dot { animation: tochkaPulse 6.4s ease-in-out infinite; animation-delay: 1.6s; }
.timeline-step:nth-child(6) .timeline-dot { animation: tochkaPulse 6.4s ease-in-out infinite; animation-delay: 2s; }



.timeline-step {
  position: relative;
  z-index: 1;
  min-height: 520px;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #efe3bf;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
  z-index: 3;
}

.timeline-content {
  position: absolute;
  left: 50%;
  width: 170px;
  transform: translateX(-50%);
  text-align: center;
}

.step-top .timeline-content { bottom: calc(50% + 34px); }
.step-bottom .timeline-content { top: calc(50% + 34px); }

.timeline-content h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(18px, 1.4vw, 20px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-main);
}

.timeline-content p {
  margin: 12px 0 0;
  font-family: var(--font-body);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
  color: var(--text-soft);
}

@media (max-width: 980px) {
  .timeline-wrap { margin-top: 28px; }
  .timeline-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: auto;
    padding: 0;
  }
  .timeline-line {
    left: 50%;
    right: auto;
    top: 0;
    bottom: 0;
    width: 8px;
    height: auto;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #b99549 0%, #eadcb3 50%, #b99549 100%);
  }
  .timeline-step { min-height: 120px; width: 100%; }
  .timeline-dot { left: 50%; top: 50%; transform: translate(-50%, -50%); }
  .timeline-content { width: calc(50% - 34px); transform: none; text-align: left; }
  .step-top .timeline-content {
    left: 0;
    right: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    text-align: right;
    padding-right: 28px;
  }
  .step-bottom .timeline-content {
    left: calc(50% + 34px);
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    text-align: left;
    padding-left: 0;
  }
}

@media (max-width: 700px) {
  .timeline-section { margin-top: 18px; padding: 24px; }
}


/*==================================
6 БЛОК (Современные технологии)
===================================*/
.tech-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-main);
}

.tech-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-soft);
}

.tech-bottom-note {
  margin: 0px 10px;
  padding: 12px 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, #e8dbc6 0%, #dcc8aa 100%);
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.2;
  font-weight: 700;
  color: #002554;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.tech-section {
  margin-top: 28px;
  background: linear-gradient(180deg, #fffdf8 0%, #fcf7ee 100%);
  border: 1px solid rgba(214, 164, 97, 0.40);
  border-radius: 32px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.16);
  padding: 40px;
  position: relative;
  z-index: 2;
}

.tech-title {
  margin: 0 auto;
  text-align: center;
  max-width: 920px;
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 48px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.tech-svg {
  display: block;
  width: 100%;
  height: auto;
}

.tech-svg-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  fill: #002554;
}

.tech-svg-text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  fill: #4c4c4c;
}

.tech-card-group,
.tech-line,
.tech-point,
.tech-image-svg {
  transform-box: fill-box;
  transform-origin: center;
}

.tech-inner-frame {
  transform-box: fill-box;
  transform-origin: top center;
}

.tech-line-top-mobile-only { display: none; }
.tech-line-bottom-mobile-only { display: none; }

@media (max-width: 980px) {
  
  .tech-bottom-note {font-size: 20px; }
}

@media (max-width: 770px) {
  .tech-section { padding: 24px; }
  .tech-bottom-note { padding: 20px 18px; border-radius: 16px; }
  .tech-section { margin-top: 18px; padding: 24px; }
  .tech-title { max-width: 100%; }
  .tech-bottom-note { margin-top: 18px; font-size: 22px); line-height: 1.2; }
  .tech-card h3 { font-size: 20px; }
  .tech-card p { font-size: 15px; }

}


@media (max-width: 500px) {
  .tech-section { padding: 18px; }
  .tech-bottom-note { padding: 16px 14px; font-size: clamp(18px, 4.5vw, 24px); }
  .tech-card h3 { font-size: 18px; }
  .tech-card p { font-size: 14px; line-height: 1.45; }
  .tech-card-group-top-mobile { transform: translate(60px, -590px) scale(2.15); }
  .tech-card-group-bottom-mobile { transform: translate(-80px, 990px) scale(2.25); }
  .tech-stage, .tech-svg { overflow: visible; }
  .tech-svg { height: 630px; }
  .tech-inner-frame { display: none; }
  .tech-image-svg { transform: scale(1.75); }
  .tech-point-top-mobile { transform: translate(0px, -160px) scale(2); }
  .tech-point-bottom-mobile { transform: translate(70px, -15px) scale(2); }
  .tech-line-top-mobile, .tech-line-bottom-mobile { display: none; }
  .tech-line-top-mobile-only, .tech-line-bottom-mobile-only { display: block; }
  .tech-svg-title { font-size: 24px; }
  .tech-svg-text { font-size: 16px; }
}


/*==================================
7 БЛОК (Персонализация)
===================================*/
.personal-section {
  margin-top: 28px;
  background: linear-gradient(180deg, #fffdf8 0%, #fcf7ee 100%);
  border: 1px solid rgba(214, 164, 97, 0.40);
  border-radius: 32px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.16);
  padding: 40px;
  position: relative;
  z-index: 2;
}

.personal-title {
  margin: 0 auto;
  text-align: center;
  max-width: 900px;
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.personal-grid {
  margin-top: 64px;
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  gap: 24px;
  align-items: center;
}

.personal-left {
  position: relative;
  padding: 24px 22px 24px;
  border: 1px solid rgba(214, 164, 97, 0.38);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@keyframes breathingGlow {
  0% {
    /* Начальное состояние: слабое синее свечение */
    box-shadow: 
      
      0 0 5px 1px rgba(214, 164, 97, 0.2); /* Едва заметное песочное */
  }
  50% {
    /* Пик пульсации: яркое синее и мягкое песочное */
    box-shadow: 
      
      0 0 95px 4px rgba(214, 164, 97, 0.35); /* Выраженный песочный акцент */
  }
  100% {
    /* Возврат к начальному состоянию */
    box-shadow: 
      
      0 0 5px 1px rgba(214, 164, 97, 0.2);
  }
}


.personal-right {
  position: relative;
  padding: 22px 2px 24px 1px;
  border: 1px solid rgba(214, 164, 97, 0.38);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  margin-left: 70px;
  margin-right:40px;
  animation: breathingGlow 2s infinite alternate;
	
}

.personal-item {
  padding: 18px 18px;
  border: 1px solid rgba(214, 164, 97, 0.28);
  border-radius: 18px;
  background: #ffffff;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(18px, 1.2vw, 24px);
  line-height: 1.45;
  font-weight: 500;
  color: #2f2f2f;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
}

.personal-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

@font-face {
  font-family: 'Moniqa';
  src: url('Moniqa-Black.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
}

.personal-brace {
  font-family: 'Moniqa', serif;
  font-size: 330px;
  line-height: 0.62;
  font-weight: 100;
  color: #b99549;
  transform: scaleX(0.52);
  transform-origin: center;
}

.personal-quote {
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(28px, 2vw, 34px);
  line-height: 1.22;
  font-weight: 600;
  color: #002554;
}



@media (max-width: 980px) {
  .personal-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .personal-center {
    flex-direction: column;
    gap: 0;
  }
  .personal-brace {
    font-size: 290px;
    position: relative;
    left: -25px;
    transform: rotate(90deg) scaleX(0.9);
    margin: -40px;
  }
  
}

@media (max-width: 700px) {
  .personal-section { margin-top: 18px; padding: 24px; }
  .personal-grid { margin-top: 28px; }
 
}

@media (max-width: 565px) {
  .personal-section { padding: 18px; }
  .personal-right {
	  margin-left: 0px;
	  margin-right: 0px;
	  }
}


/*==================================
8 БЛОК (Участвуют весь класс)
===================================*/
.uchastniki-section {
  margin-top: 28px;
  background: linear-gradient(180deg, #fffdf8 0%, #fcf7ee 100%);
  border: 1px solid rgba(214, 164, 97, 0.40);
  border-radius: 32px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.16);
  padding: 40px;
  position: relative;
  z-index: 2;
}

.uchastniki-title {
  margin: 20px auto 60px;
  text-align: center;
  max-width: 980px;
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 700;

  color: var(--text-main);
}

.uchastniki-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 28px;
  align-items: start;
  width: 100%;
  margin-left: 0 auto;
  margin-right: 0 auto;
}

.shablonnyi-blok{
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(214, 164, 97, 0.38);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
}

.maestro-blok {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(214, 164, 97, 0.38);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 25px 1px rgba(214, 164, 97, 0.15);
  padding: 20px 0;
}

.razdelitel-blok {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nizhnyaya-polosa {
  margin-top: 68px;
  min-height: 124px;
  border: 1px solid rgba(214, 164, 97, 0.38);
  border-radius: 0 0 24px 24px;
  background: #ffffff;
  overflow: hidden;
}

.razdelitel-liniya {
  width: 3px;
  height: 370px;
  border-radius: 999px;
  background: linear-gradient(180deg, #b99549 0%, #e7d39e 50%, #b99549 100%);
}

.blok-podzagolovok {
  margin: 0 0 34px;
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(24px, 2vw, 40px);
  line-height: 1.12;
  font-weight: 600;
  color: #d6a461;
}

.krugi-setka {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.krug {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #9aa3ad;
  background: transparent;
}

.krugi-setka-serye .krug.aktivnyi {
  background: #4f5861;
  border-color: #4f5861;
}

.blok-podpis {
  margin-top: 28px;
 
  font-family: var(--font-body);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 2.45;
  color: #2f2f2f;
}

.krugi-setka-zolotye .krug.aktivnyi {
  background: #b99549;
  border-color: #b99549;
}

.polosa-verh {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #ffffff;
}

.polosa-yacheika {
  padding: 16px 16px;
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.3;
  font-weight: 500;
  color: #2f2f2f;
  border-right: 1px solid rgba(214, 164, 97, 0.55);
}

.polosa-yacheika:last-child {
  border-right: none;
}

.polosa-niz {
  padding: 14px 18px;
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(18px, 1.35vw, 28px);
  line-height: 1.2;
  font-weight: 700;
  color: #002554;
  background: linear-gradient(180deg, #e8dbc6 0%, #dcc8aa 100%);
}

@media (max-width: 980px) {
  .uchastniki-grid { transform: scale(0.85) }
}

@media (max-width: 770px) {
  .uchastniki-section { margin-top: 18px; padding: 24px; }
  .uchastniki-title { margin-top: 22px; }
  .uchastniki-grid { grid-template-columns: 1fr; gap: 1px; }
  .razdelitel-blok { min-height: 40px; }
  .blok-podpis { margin-top: 24px; width: fit-content; max-width: 100%; margin: 22px auto 0; text-align: center; }
  .razdelitel-liniya { width: 330px; height: 3px; }
  .polosa-verh { grid-template-columns: 1fr; }
  .polosa-yacheika { border-right: none; border-bottom: 1px solid rgba(214, 164, 97, 0.55); }
  .polosa-yacheika:last-child { border-bottom: none; }
  .nizhnyaya-polosa { margin-top: 1px; }
  .krugi-setka { display: grid; grid-template-columns: repeat(10, 22px); gap: 8px; width: max-content; margin: 0 auto; }
  .shablonnyi-blok, .maestro-blok { display: flex; flex-direction: column; align-items: center; }
}

@media (max-width: 500px) {
  .uchastniki-section { padding: 18px; }
}


/*==================================
9 БЛОК (Пакеты и тарифы)
===================================*/
.pakety-section {
  margin-top: 28px;
  background: linear-gradient(180deg, #fffdf8 0%, #fcf7ee 100%);
  border: 1px solid rgba(214, 164, 97, 0.40);
  border-radius: 32px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.16);
  padding: 40px 24px;
  position: relative;
  z-index: 2;
}

.pakety-title {
  margin: 0 auto;
  text-align: center;
  max-width: 980px;
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.pakety-podzagolovok {
  margin: 18px auto 40px;
  max-width: 860px;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-soft);
}

.pakety-podzagolovok2 {
  margin: 18px auto 0px;
  max-width: 860px;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-soft);
}

.pakety-table-wrap {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
}

.pakety-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  min-width: 768px;
  border-collapse: collapse;
}

.pakety-row { display: contents; }

.pakety-cell {
  padding: 16px 12px;
  border-bottom: 1px solid rgba(214, 164, 97, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(14px, 1.1vw, 16px);
  font-family: var(--font-body);
  color: var(--text-soft);
}

.pakety-cell-left {
  justify-content: flex-start;
  text-align: left;
  padding-left: 20px;
  color: var(--text-main);
  font-weight: 500;
}

.paket-head {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--text-main);
  padding-top: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(214, 164, 97, 0.4);
}

.pakety-group-title {
  color: var(--color-sand);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
}

.pakety-row-group .pakety-cell {
  background-color: rgba(214, 164, 97, 0.12);
  border-top: 1px solid var(--color-sand);
}

.pakety-row-group.pakety-row-price .pakety-cell { background-color: transparent; }

.paket-price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(20px, 1.6vw, 26px);
  color: var(--text-main);
  padding-top: 24px;
  padding-bottom: 24px;
}

.pakety-row-price .pakety-cell { border-bottom: none; }

.paket-col-akcent, .paket-head-akcent {
  background-color: rgba(214, 164, 97, 0.04);
  border-left: 2px solid var(--color-sand);
  border-right: 2px solid var(--color-sand);
  position: relative;
  z-index: 2;
}

.paket-col-akcent {
  box-shadow: inset 6px 0 10px -6px rgba(214, 164, 97, 0.25),
              inset -6px 0 10px -6px rgba(214, 164, 97, 0.25);
}

.paket-head-akcent {
  border-top: 2px solid var(--color-sand);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background: linear-gradient(180deg, rgba(214, 164, 97, 0.12) 0%, rgba(214, 164, 97, 0.04) 100%);
  box-shadow: 0 -8px 15px -5px rgba(214, 164, 97, 0.15),
              inset 6px 6px 10px -6px rgba(214, 164, 97, 0.25),
              inset -6px 6px 10px -6px rgba(214, 164, 97, 0.25);
}

.pakety-row-price .paket-col-akcent {
  border-bottom: 2px solid var(--color-sand);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  box-shadow: 0 8px 15px -5px rgba(214, 164, 97, 0.15),
              inset 6px -6px 10px -6px rgba(214, 164, 97, 0.25),
              inset -6px -6px 10px -6px rgba(214, 164, 97, 0.25);
}

.pakety-table .paket-col-akcent { border-bottom: 1px solid rgba(214, 164, 97, 0.25); }
.pakety-row-price .paket-col-akcent { border-bottom: 2px solid var(--color-sand); }
.pakety-row .pakety-cell:not(.pakety-cell-left) { color: var(--text-main); font-weight: 500; }

@media (max-width: 770px) {
  .pakety-section { margin-top: 18px; padding: 24px; }
  .pakety-cell-left {
    position: sticky;
    left: 0;
    z-index: 10;
    background-color: #fcf7ee;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.05); 
  }
  .pakety-row-group .pakety-cell-left { background-color: #faf1e3; }
  .pakety-row-group.pakety-row-price .pakety-cell-left { background-color: #fcf7ee; }
  .paket-col-akcent, .paket-head-akcent { box-shadow: inset -6px 0 10px -6px rgba(214, 164, 97, 0.25); }
  .pakety-row-head .pakety-cell-left {
    background-color: #fffdf8;
    z-index: 12;
    border-bottom: 1px solid rgba(214, 164, 97, 0.4);
  }
}

@media (max-width: 500px) {
  .pakety-section { padding: 18px; }
}


/*==================================
10 БЛОК (Галерея)
===================================*/
.gallery-section {
  margin-top: 28px;
  background: linear-gradient(180deg, #fffdf8 0%, #fcf7ee 100%);
  border: 1px solid rgba(214, 164, 97, 0.40);
  border-radius: 32px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.16);
  padding: 40px 24px;
  position: relative;
  z-index: 2;
}

.gallery-title {
  margin: 0 auto;
  text-align: center;
  max-width: 980px;
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.gallery-podzagolovok {
  margin: 18px auto 40px;
  max-width: 860px;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-soft);
}

.gallery-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px; 
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(214, 164, 97, 0.3);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  background-color: #f4efe6;
  transform: translateZ(0); 
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.bento-item:hover img { transform: scale(1.06); }
.item-large { grid-column: span 2; grid-row: span 2; }
.item-wide { grid-column: span 2; grid-row: span 1; }

@media (max-width: 980px) {
  .gallery-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px; 
    gap: 16px;
  }
  .item-large, .item-wide { grid-column: span 2; }
}

@media (max-width: 770px) {
  .gallery-section { padding: 24px 18px; }
  .gallery-bento { grid-auto-rows: 150px; gap: 12px; }
}


/*==================================
11 БЛОК (CTA / Контакты)
===================================*/
.cta-section {
  margin-top: 28px;
  margin-bottom: 60px;
  background: linear-gradient(180deg, #fffdf8 0%, #fcf7ee 100%);
  border: 1px solid rgba(214, 164, 97, 0.40);
  border-radius: 32px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.16);
  padding: 50px 40px;
  position: relative;
  z-index: 2;
}

.cta-title {
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 40px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-left {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(214, 164, 97, 0.38);
  border-radius: 28px;
  padding: 34px 32px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
}

.cta-left::after { display: none; }

.cta-subtitle {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.5vw, 20px);
  color: var(--text-main);
  font-weight: 600; 
  margin-bottom: 24px;
}

.cta-subtitle2 {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.5vw, 20px);
  color: var(--text-main);
  font-weight: 600; 
  margin-bottom: 12px;
}

.cta-subtitle {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.5vw, 20px);
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 24px;
}

.cta-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.2vw, 18px);
  color: #2f2f2f;
  font-weight: 500;
  line-height: 1.4;
}

.cta-check {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.cta-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding-left: 20px;
}

.hero-form-grid2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;

}

 .hero-form2 {
  margin-top: 0px;
  width: 100%;
  max-width: 380px;
  }

.cta-qr-box {
  padding: 1px;
  background: #ffffff;
  border: 4px solid var(--color-sand);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}


.cta-wa-link {
  display: flex;
 
  gap: 14px;
  text-decoration: none;
  max-width: 340px;
  transition: transform 0.2s ease;
  margin-top: 24px;
}

.cta-wa-link:hover { transform: translateY(-3px); }

.cta-wa-icon { width: 52px; height: 52px; flex-shrink: 0; }

.cta-wa-text {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--text-main);
  line-height: 1.4;
}

.cta-wa-text strong {
  font-weight: 700;
  color: #1b1b1b;
}

@media (max-width: 980px) {
  .cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-left {
    padding-right: 0;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(214, 164, 97, 0.40);
  }
  .cta-left::after { display: none; }
  .cta-right { padding-left: 0; }
  
	.cta-right {
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  gap: 8px;
	  padding-left: 20px;
	}

	.cta-subtitle2 {
	max-width: 380px;
	text-align: center;
	}

	.cta-left {
	  padding: 34px 32px;
	  margin: 0 auto;
	  
	}
	
	.cta-title {
		max-width: 480px;
	}
  
}

@media (max-width: 770px) {
  .cta-section { padding: 32px 24px; }
  .cta-qr-box { display: none; }
  .cta-wa-link {
    background: #ffffff;
    padding: 16px;
    border: 1px solid rgba(214, 164, 97, 0.40);
    border-radius: 20px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  }
}



/*==================================
 Страница благодарности
===================================*/

.thanks-hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-box {
  width: 100%;
  max-width: 460px;
  text-align: center;
}

.thanks-box .badge {
  margin-left: auto;
  margin-right: auto;
}

.thanks-box h1 {
  max-width: 100%;
}

.thanks-box .hero-text {
  max-width: 100%;
}

.thanks-button {
  display: inline-block;
  margin-top: 24px;
  padding: 16px 24px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 15px;
  font-family: var(--font-head);
  font-weight: 700;
  background: var(--color-sand);
  color: var(--color-white);
  box-shadow: 0 12px 28px rgba(0, 37, 84, 0.24);
  transition: 0.2s ease;
}

.thanks-button:hover {
  transform: translateY(-2px);
}

