

h1, h2, h3, h4{
    color: #0051ff;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

h1, h2, h3, h4 {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Добавим небольшую задержку для красивого каскада */
h2 {
  font-size:25px;
  animation-delay: 0.2s;
}

h3 {
  font-size:22px;
  animation-delay: 0.4s;
}

h4 {
  animation-delay: 0.6s;
}

@media(max-width:680px){
  .h5{
    font-size:18px;
  }
  h2{
    font-size: 22px;
  } 
  
}

 /* Базовые отступы секции на крупных экранах */
@media (min-width: 992px) {
  #hero {
    padding-top: 5rem;   /* py-lg-6 в разметке добавляет ещё, можно подстроить */
    padding-bottom: 5rem;
  }
}
/* 1) Глобально отключаем горизонтальный скролл */
html { overflow-x: clip; }               /* современные браузеры */
body { overflow-x: hidden; width: 100%; } /* фолбэк */

/* ===== Hero Styles ===== */
  .hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 100%);
    color: #fff;
  }

   .hero-paid {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d6efd 0%, #20c997 100%);
    color: #fff;
  }
  .hero-paid::before,
  .hero-paid::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .22;
    pointer-events: none;
  }
  .hero-paid::before {
    width: 420px; height: 420px;
    background: #fff; top: -90px; right: -140px;
  }
  .hero-paid::after {
    width: 360px; height: 360px;
    background: #ffe484; bottom: -120px; left: -120px;
  }
  .hero-paid .inner {
    padding: clamp(3rem, 6vw, 6rem) 0;
  }
  .hero-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 1rem;
  }
  .hero-paid h1 { letter-spacing: -0.02em; }
  .hero-paid .lead { color: rgba(255,255,255,.95); }
  .btn-white { background:#fff; color:#0d6efd; border:none; }
  .btn-white:hover { background:#f8f9fa; color:#0a58ca; }
  .btn-outline-light:hover { background:#fff; color:#212529; border-color:#fff; }
  .check-list li::marker { content: "✓ "; }

/* Services Section (Our Services) */
.services-section {
  background: #f8fafc;
}

.services-section .service-card {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  border: 1px solid #edf2f7;
  border-radius: 1rem;
}

.services-section .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 .75rem 2rem rgba(11, 15, 25, 0.08);
  border-color: #e2e8f0;
}

.services-section .service-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: .75rem;
  background: #e7f1ff;    /* soft primary tint */
  color: #0d6efd;         /* Bootstrap primary */
  font-size: 1.5rem;
}

/* Improve spacing on very large screens */
@media (min-width: 1400px) {
  .services-section .card-body {
    padding: 2rem;
  }
}
/* Advantages Section */
.advantages-section {
  background: #ffffff;
}

.advantages-section .adv-card {
  border-color: #edf2f7;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.advantages-section .adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 .75rem 2rem rgba(11, 15, 25, 0.08);
  border-color: #e2e8f0;
}

.advantages-section .adv-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: .75rem;
  background: #e7f1ff;   /* soft primary tint */
  color: #0d6efd;        /* Bootstrap primary */
  font-size: 1.5rem;
}

.advantages-section .adv-stat .h3 {
  letter-spacing: -0.01em;
}

/* Spacing on very large screens */
@media (min-width: 1400px) {
  .advantages-section .adv-card {
    padding: 2rem !important;
  }
}
/* ===== About Us Page Styles (3 sections) ===== */

/* Section 1 — Intro */
.about-hero {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.about-hero .about-media img {
  object-fit: cover;
  border-radius: 1rem;
}

/* Section 2 — Mission & Values */
.about-values {
  background: #ffffff;
}
.value-card {
  border: 1px solid #eef2f7;
  border-radius: 1rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: #e2e8f0;
  box-shadow: 0 .75rem 2rem rgba(11, 15, 25, 0.08);
}
.value-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: .75rem;
  background: #e7f1ff;     /* soft primary tint */
  color: #0d6efd;          /* Bootstrap primary */
  font-size: 1.5rem;
}

/* Section 3 — Team & Approach */
.about-team {
  background: #f8fafc;
}
.team-card {
  border: 1px solid #eef2f7;
  border-radius: 1rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: #e2e8f0;
  box-shadow: 0 .75rem 2rem rgba(11, 15, 25, 0.08);
}
.process.step {
  border-color: #e8eef6;
  background: #ffffff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.process.step:hover {
  transform: translateY(-3px);
  border-color: #dfe7f1;
  box-shadow: 0 .75rem 2rem rgba(11, 15, 25, 0.06);
}
.step-icon {
  color: #0d6efd;
  font-size: 1.25rem;
}

/* CTA highlight */
.about-cta {
  background: linear-gradient(135deg, #f3f6ff, #ffffff);
  border: 1px solid #e6ecf7;
  border-radius: 1rem;
}

/* Large screens refinements */
@media (min-width: 1400px) {
  .value-card .card-body,
  .team-card .card-body {
    padding: 2rem !important;
  }
}
.img-team{
  width:150px;
}

/* ===== Pricing Section (CAD) ===== */
.pricing-section {
  background: #f8fafc;
}

.pricing-section .pricing-card {
  border-radius: 1.25rem;
  transition: transform .2s ease, box-shadow .2s ease;
}

.pricing-section .pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 .75rem 2rem rgba(11, 15, 25, 0.08);
}

.pricing-section .pricing-card.popular {
  outline: 2px solid #0d6efd20;
}

.pricing-section .price-tag {
  display: flex;
  align-items: baseline;
  gap: .5rem;
}

.pricing-section .price-amount {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pricing-section .addons-block {
  background: linear-gradient(135deg, #f3f7ff, #ffffff);
  border: 1px solid #e6ecf7;
  border-radius: 1rem;
}

/* Improve spacing on very large screens */
@media (min-width: 1400px) {
  .pricing-section .card-body {
    padding: 2.25rem 2.5rem !important;
  }
}

/* ===== FAQ Section ===== */
.faq-section {
  background: #ebf0f0;
}

.faq-section .faq-accordion .accordion-item {
  border-bottom: 1px solid #c7c9c6;
}

.faq-section .accordion-button {
  font-weight: 600;
  padding: 1.1rem 0;
}

.faq-section .accordion-button:not(.collapsed) {
  color: #0d6efd;
  background-color: transparent;
  box-shadow: none;
}

.faq-section .accordion-body {
  color: #6b7280; /* subtle text */
  padding: 0 0 1rem 0;
}

.faq-section .faq-cta {
  background: none;
}

.faq-section .faq-cta > .rounded-4 {
  background: linear-gradient(135deg, #f3f7ff, #ffffff);
  border: 1px solid #e6ecf7;
}

@media (min-width: 1400px) {
  .faq-section .accordion-button {
    font-size: 1.05rem;
  }
}

