*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;         
  color: #355971;               
}
.highlight {
  color: #3C7AA0;
}


a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding-left: 18px;
}

li {
  margin-bottom: 4px;
}

/* CONTAINER */

.container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

.section-cost {
    background-color: #ffffff;               
    padding: 80px 0;
}

.cost-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cost-title {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 32px;
    color: #204766;                         
    font-weight: 700;
}

.cost-title-accent {
    color: #3b8fc9;                         
}

.cost-text p {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.7;
    color: #3c4a57;                        
}

.cost-text p:last-child {
    margin-bottom: 0;
}


@media (max-width: 768px) {
    .section-cost {
        padding: 56px 0;
    }

    .cost-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .cost-text p {
        font-size: 15px;
    }
}



.site-header {
  background: #ffffff;
  position: static;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(37, 97, 128, 0.07);
}


.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}


.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  height: 34px;         
}

.brand-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3a5c73;
}



.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 999px;
  border: 1px solid #7cc2e4;
  background: #ffffff;
  color: #3c7aa0;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.header-cta:hover {
  background: #e7f5fd;
  box-shadow: 0 8px 18px rgba(86, 164, 209, 0.3);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .header-row {
    flex-direction: column;     
    align-items: center;
    gap: 8px;
    padding: 10px 0;
  }

  .brand {
    flex-direction: column;     
    align-items: center;
    gap: 4px;
  }

  .brand-mark {
    height: 38px;
  }

  .brand-name {
    font-size: 13px;
    text-align: center;
  }

  .header-cta {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 30px;
    margin-top: 4px;
  }
}


/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  background: #5fb3e3;         
  color: #ffffff;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s;
}

.btn:hover {
  background: #4ba3d7;
  box-shadow: 0 10px 24px rgba(79, 163, 215, 0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(95, 179, 227, 0.8);
  color: #3c7aa0;
}

.btn-outline:hover {
  background: rgba(95, 179, 227, 0.08);
}

.btn-dark {
  background: #355971;
  color: #ffffff;
}



#reviews {
  padding: 80px 0 70px;
}

#reviews h2 {
  margin-bottom: 8px;
  color: #1f2a30;
}

.reviews-subtitle {
  color: #4f6374;
  margin-bottom: 28px;
  max-width: 600px;
}


.reviews-scroller {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 6px 4px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}


.reviews-scroller::-webkit-scrollbar {
  height: 6px;
}
.reviews-scroller::-webkit-scrollbar-track {
  background: transparent;
}
.reviews-scroller::-webkit-scrollbar-thumb {
  background: rgba(60, 122, 160, 0.35);
  border-radius: 999px;
}


.review-card {
  scroll-snap-align: start;
  background: #ffffff; 
  border-radius: 22px;
  padding: 22px 24px 20px;
  min-width: min(640px, 100% - 40px);
  box-shadow: 0 10px 24px rgba(28, 75, 104, 0.08);
  border: 1px solid rgba(140, 193, 223, 0.3); 
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}



.review-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 4px;
  border-radius: 0 6px 6px 0;
  background: linear-gradient(to bottom, #8fc9e8, #5ca6cf);
}


.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(28, 75, 104, 0.14);
  border-color: rgba(95, 179, 227, 0.9);
}


.review-name {
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 14px 0;
  color: #1f2a30;
}


.review-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #2a3a4a;
  white-space: pre-line; 
}


.reviews-hint {
  margin-top: 10px;
  font-size: 13px;
  color: #7b8da0;
}


@media (max-width: 768px) {
  .review-card {
    min-width: 88%;
    padding: 18px 18px 16px;
  }

  .review-card::before {
    top: 20px;
    bottom: 20px;
  }

  .review-text {
    font-size: 14px;
  }
}


.hero {
  padding: 72px 0 72px;
}


.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 32px;
  align-items: center;
  
}

.hero-text {
  max-width: 520px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  opacity: 0.7;
  margin-bottom: 12px;
  color: #3c7aa0;              
}

.hero h1 {
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.1;
  margin: 0 0 16px;
  color: #1f2a30;
}

.hero-sub {
  max-width: 480px;
  opacity: 0.85;
  margin-bottom: 24px;
}

/* карточка справа */

.hero-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 24px 28px;
  border: 1px solid rgba(60, 122, 160, 0.12);
  box-shadow: 0 16px 40px rgba(28, 75, 104, 0.12);
}

.hero-card-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #355971;
}

.hero-card-text {
  font-size: 14px;
  opacity: 0.9;
  color: #4a6a80;
}


.section {
  padding: 72px 0; 
}


.section-gray {
  background: #edf3f9;          
}

.section-accent {
  background: linear-gradient(135deg, #5fb3e3, #3c7aa0);
  color: #ffffff;
}

.section h2 {
  font-size: 26px;
  margin: 0 0 18px;
  color: #1f2a30;
}

.section.section-accent h2 {
  color: #ffffff;
}

.section-sub {
  max-width: 640px;
  opacity: 0.9;
  font-size: 15px;
  margin: 0 0 24px;
  color: #4a6a80;
}

.section.section-accent .section-sub {
  color: #f4fbff;
}

.section-header {
  margin-bottom: 20px;
}

.section-cta {
  background: linear-gradient(135deg, #4f93c2, #3b7ca8);
  color: #ffffff;
  padding: 64px 0 56px;
}



.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}


.feature-card,
.tag-card {
  padding: 20px 18px 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(60, 122, 160, 0.12);
  box-shadow: 0 8px 20px rgba(28, 75, 104, 0.05);
}

.feature-card h3,
.tag-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #1f2a30;
}

.feature-card p,
.tag-card p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
  color: #4a6a80;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 10px;
}

.step {
  padding: 20px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(60, 122, 160, 0.12);
  position: relative;
  box-shadow: 0 8px 20px rgba(28, 75, 104, 0.05);
}

.step-number {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 26px;
  opacity: 0.12;
  color: #5fb3e3;
}

.step h3 {
  margin: 0 0 8px;
  color: #1f2a30;
}

.step p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
  color: #4a6a80;
}


.about {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.about-text {
  max-width: 800px;
}

.about p {
  margin: 0 0 10px;
  font-size: 14px;
  opacity: 0.9;
  color: #4a6a80;
}


.faq {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

details {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(60, 122, 160, 0.12);
    padding: 12px 16px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
    box-shadow: 0 4px 12px rgba(60, 122, 160, 0.08); /* ✨ мягкая тень */
}

details:hover {
    box-shadow: 0 6px 18px rgba(60, 122, 160, 0.16);
    transform: translateY(-2px);
}

details[open] {
    border-color: rgba(95, 179, 227, 0.5);
    box-shadow: 0 8px 22px rgba(60, 122, 160, 0.2);
}

summary {
    list-style: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #355971;
    padding-right: 20px;
    position: relative;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    opacity: 0.7;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

details[open] summary::after {
    content: "–";
    transform: rotate(180deg);
    opacity: 1;
}

details p {
    margin: 10px 0 4px;
    font-size: 14px;
    line-height: 1.55;
    color: #4a6a80;
    opacity: 0.9;
    padding-right: 6px;
}




.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 18px;
}

.pricing-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(60, 122, 160, 0.12);
  padding: 20px 22px 22px;
  box-shadow: 0 10px 24px rgba(28, 75, 104, 0.06);
  
  display: flex;
  flex-direction: column;   
}

.pricing-card h3 {
  margin: 0 0 4px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1f2a30;
}

.pricing-sub {
  font-size: 13px;
  opacity: 0.8;
  margin: 0 0 14px;
  color: #4a6a80;
}

.pricing-price {
  font-size: 24px;
  font-weight: 700;
  margin: 4px 0 14px;
  text-align: center;
  color: #3c7aa0;
}

.pricing-card ul {
  margin: 0 0 14px;
  padding-left: 18px;
  font-size: 13px;
  color: #4a6a80;
}

.pricing-note {
  font-size: 12px;
  opacity: 0.9;
  color: #4a6a80;
  margin: 0 0 16px;
}

.pricing-btn {
  align-self: stretch;
  text-align: center;
  margin-top: auto;     
}




.formats-subtitle {
  margin: 32px 0 16px;
  font-size: 18px;
  font-weight: 600;
  color: #1f2a30;
}

.format-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(60, 122, 160, 0.12);
  padding: 20px 22px 22px;
  box-shadow: 0 10px 24px rgba(28, 75, 104, 0.06);

  display: flex;
  flex-direction: column;
}

.format-card-main {
  max-width: 780px;
  margin: 0 auto 16px;
}

.format-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-bottom: 8px;
}

.format-card-header h3 {
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1f2a30;
}

.format-price {
  margin-left: auto;
  font-size: 18px;
  font-weight: 700;
  color: #3c7aa0;
}

.format-tag {
  font-size: 12px;
  text-transform: none;
  font-weight: 500;
  color: #3c7aa0;
  background: #eaf5fb;
  border-radius: 999px;
  padding: 3px 10px;
}

.format-sub {
  margin: 0 0 8px;
  font-size: 14px;
  color: #4a6a80;
}

.format-list {
  margin: 0 0 10px;
  padding-left: 18px;
  font-size: 13px;
  color: #4a6a80;
}

.format-list li {
  margin-bottom: 3px;
}

.format-note {
  margin: 0 0 16px;
  font-size: 13px;
  color: #4a6a80;
  opacity: 0.9;
}

.format-btn {
  align-self: stretch;
  text-align: center;
  margin-top: auto;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

@media (max-width: 768px) {
  .format-card-main {
    margin-bottom: 20px;
  }

  .format-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .format-price {
    margin-left: 0;
  }
}
.about-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.about-text {
  flex: 1;
  max-width: 600px;
}

.about-photo {
  flex: 0 0 320px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 80, 130, 0.1);
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px) {
  .about-wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }

  .about-photo {
    flex: 0 0 auto;      /* ← снимаем фиксированную высоту 320px */
    width: 100%;
    max-width: 350px;
    height: auto;        /* ← пусть растягивается по картинке */
  }

  .about-text {
    max-width: 100%;
  }
}



.hero-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-photo {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(28, 75, 104, 0.08);
  border: 1px solid rgba(60, 122, 160, 0.12);
}

.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 24px 26px 28px;
  border: 1px solid rgba(60, 122, 160, 0.12);
  box-shadow: 0 12px 30px rgba(28, 75, 104, 0.10);
}



.benefits-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  padding: 22px 26px;
  border-radius: 18px;
  border: 1px solid rgba(60, 122, 160, 0.12);
  box-shadow: 0 10px 24px rgba(28, 75, 104, 0.06);
}

.benefit-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;       
  min-height: 28px;      
  border-radius: 50%;    
  background: #e5f2f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.requests-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 32px; 
}


.request-item {
  text-align: center;
  max-width: 360px;
  margin: 0 auto;
}

.request-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #eaf5fb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 12px rgba(28, 75, 104, 0.08);
}

.request-icon img {
  width: 28px;
  height: 28px;
}

.request-item h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: #1f2a30; 
}

.request-item p {
  color: #4a6a80;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 920px) {
  .requests-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.steps-sub {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 28px;
}

.steps-list {
  max-width: 720px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  padding-bottom: 24px;
}

.step-item::before {
  content: "";
  position: absolute;
  left: 16px;             
  top: 20px;            
  bottom: -24px;         
  width: 2px;
  background: rgba(95, 179, 227, 0.4); 
}

.step-item:last-child::before {
  display: none;
}

.step-marker {
  position: relative;
  width: 32px;
  flex: 0 0 32px;
}

.step-dot {
  position: absolute;
  left: 7px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #5fb3e3;
  color: #ffffff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(95, 179, 227, 0.18); 
}

.step-text h3 {
  margin: 0 0 6px;
  font-size: 17px;
  color: #1f2a30;
}

.step-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #4a6a80;
}


@media (max-width: 480px) {
  .step-item {
    gap: 12px;
    padding-bottom: 20px;
  }

  .step-item::before {
    left: 14px;
  }

  .step-dot {
    left: 5px;
  }
}



.benefit-icon img {
  width: 14px;
  height: 14px;
}

.benefit-content h3 {
  font-size: 17px;
  margin: 0 0 4px;
  font-weight: 600;
  color: #1f2a30; 
}

.benefit-content p {
  margin: 0;
  color: #4a6a80;
  line-height: 1.55;
  font-size: 15px;
}

#benefits h2 {
  text-align: center;
  margin-bottom: 28px;
  color: #1f2a30;
}


.hero-left {
  display: flex;
  flex-direction: column;
  gap: 18px;

  padding-bottom: 10px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #3c7aa0;
}

.hero-left h1 {
  margin: 0;
  font-size: 36px;
  line-height: 1.25;
  color:#1f2a30;
}

.hero-sub {
  max-width: 480px;
  color: #4a6a80;
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 10px;
}

.hero-left .btn {
  width: fit-content;
}

.hero-photo-wrapper {
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(60, 122, 160, 0.15);
  box-shadow: 0 20px 40px rgba(28, 75, 104, 0.12);

  align-self: end;
}

.hero-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
  }

  .hero-left {
    align-items: center;
  }

  .hero-photo-wrapper {
    max-width: 340px;
    margin: 20px auto 0;
  }
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 28px;           
  width: auto;
  display: block;
  opacity: 0.9;
}

.brand-text {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #355971;          
  text-transform: uppercase;
}






.pricing-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
  color: #1f2a30;
}

.pricing-time {
  font-size: 13px;
  opacity: 0.8;
  margin: 0 0 10px;
  color: #4a6a80;
}

.pricing-note {
  font-size: 13px;
  opacity: 0.9;
  margin: 10px 0 12px;
  color: #4a6a80;
}


.section-cta {
  background: linear-gradient(135deg, #4f93c2, #3b7ca8);
  color: #ffffff;
  padding: 64px 0 56px;
}

.cta-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.cta-text {
  max-width: 460px;
}

.cta-text h2 {
  margin-bottom: 12px;
  color: #ffffff;
}

.cta-text p {
  margin: 0 0 16px;
  color: #e7f2fb;
}

.cta-list {
  margin: 0;
  padding-left: 18px;
  list-style: none;
  color: #e7f2fb;
  font-size: 14px;
}

.cta-list li::before {
  content: "•";
  margin-right: 6px;
  color: #ffffff;
}

.diag-form {
  width: 100%;
  max-width: 360px;
  background: rgba(215, 242, 255, 0.747);
  backdrop-filter: blur(8px);
  padding: 20px 18px 18px;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(0, 50, 90, 0.3);
}

.diag-form .field {
  margin-bottom: 14px;
}

.diag-form input {
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: #ffffff;
  color: #1f2a30;
}

.diag-form input::placeholder {
  color: #7a9ab3;
}

.cta-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: #3b7ca8;
  color: #ffffff;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

.cta-btn:hover {
  background: #213f53;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

.cta-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

@media (max-width: 900px) {
  .cta-inner {
    flex-direction: column;
    gap: 24px;
  }

  .cta-text {
    max-width: 100%;
  }

  .diag-form {
    max-width: 100%;
  }
}



.footer {
  padding: 16px 0 22px;
  background: #e3eff8;
  font-size: 13px;
  color: #4a6a80;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}


@media (max-width: 800px) {
  .pricing {
    grid-template-columns: 1fr;
  }

  .pricing-card-main {
    transform: none;
  }
}
header,
.site-header,
.header,
#header {
  position: relative !important;
  box-shadow: 0 4px 16px rgba(37, 97, 128, 0.14) !important;
  z-index: 1000;
}
.pre-diagnosis {
    background: #eaf2f8;
    padding: 72px 0;  
    margin-top: 0;     
}

.pre-diagnosis {
  background: #eaf2f8;
  padding: 60px 0;
}

.pre-diagnosis-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.soft-path-title {
  font-size: 32px;            
  font-weight: 700;
  line-height: 1.3;
  color: #1e486d;
}

.soft-path-sub {
  font-size: 15px;
  color: #4b6a80;
}

.pre-contacts {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(60, 122, 160, 0.16);
  box-shadow: 0 6px 16px rgba(28, 75, 104, 0.08);

  text-decoration: none;
  color: #1e486d;
  font-size: 14px;

  transition: box-shadow 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}

.contact-pill:hover {
  box-shadow: 0 10px 22px rgba(28, 75, 104, 0.15);
  border-color: rgba(95, 179, 227, 0.7);
  transform: translateY(-2px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .pre-diagnosis {
    padding: 40px 0 48px;
  }

  .soft-path-title {
    font-size: 24px; 
  }

  .pre-contacts {
    flex-direction: column;
    width: 100%;
    max-width: 260px;
  }

  .contact-pill {
    justify-content: center;
  }
}

