/* Базовий CSS reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  text-rendering: optimizeSpeed;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* ----------- */


/* Підключення шрифтів */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Inter:wght@400&display=swap');

body {
  /* Типографіка */
  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Кольори */
  --color-bg:      #F9FAFB;
  --color-text:    #212529;
  --color-primary: #0055A4;
  --color-accent:  #FFBC00;
  --color-muted:   #6C757D;

  /* Глобальні властивості */
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* Посилання */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--color-accent);
}

/* Кнопки */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  background-color: var(--color-accent);
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.btn:hover {
  transform: scale(1.05);
  background-color: darken(var(--color-accent), 10%);
}
/* ====== HEADER ====== */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(249,250,251, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
}
.header__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

/* Логотип */
.header__logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
}
.header__flag {
  display: inline-flex;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.header__flag:hover {
  transform: translateY(-3px);
}

/* Навигация */
.header__nav .nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.nav__item { list-style: none; }

/* Ссылки */
.nav__link {
  position: relative;
  font-size: 1rem;
  padding: 0.25rem 0;
  color: var(--color-text);
  transition: color 0.3s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav__link:hover {
  color: var(--color-primary);
}
.nav__link:hover::after {
  transform: scaleX(1);
}

/* Кнопка «Связаться» */
.btn {
  font-family: var(--font-heading);
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  background-color: var(--color-accent);
  color: #fff;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.btn:hover {
  transform: scale(1.05);
  background-color: #e6a800; /* затемненный акцент */
}

/* Адаптив */
@media (max-width: 768px) {
  .header__container {
    flex-direction: column;
    gap: 1rem;
  }
  .header__nav .nav__list {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ====== FOOTER ====== */
.footer {
  background-color: var(--color-primary);
  color: #fff;
  padding: 3rem 2rem;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: #fff;
}
.footer__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}
.footer__nav,
.footer__info-list,
.footer__contact-list {
  list-style: none;
  padding: 0;
}

.footer__link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: var(--color-accent);
}
.footer__contact-list .footer__contact-item {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.5rem;
}
.footer__contact-list i {
  margin-right: 0.5rem;
  stroke-width: 1.5;
}
@media (max-width: 768px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__col--1 {
    grid-column: span 2;
  }
}
@media (max-width: 480px) {
  .footer__container {
    grid-template-columns: 1fr;
  }
}

/* ====== HERO ====== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
}
.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Текстова частина */
.hero__content {
  flex: 1 1 45%;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}
.hero__title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero__subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.85);
}
.hero__button {
  /* Використовуємо загальні .btn */
}

/* Візуальна частина */
.hero__visual {
  position: relative;
  flex: 1 1 45%;
  opacity: 0;
  animation: fadeInRight 0.8s ease-out 0.5s forwards;
}
.hero__image {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.2);
}

/* Анімовані фігури */
.hero__shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
}
.hero__shape--circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: 10%;
  right: 10%;
  animation: float 4s ease-in-out infinite;
}
.hero__shape--triangle {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid rgba(255, 255, 255, 0.2);
  bottom: 15%;
  left: 20%;
  animation: rotateShape 10s linear infinite;
}

/* Ключові кадри */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-20px); }
}
@keyframes rotateShape {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Адаптив */
@media (max-width: 768px) {
  .hero__content,
  .hero__visual {
    flex: 1 1 100%;
    text-align: center;
  }
  .hero__title { font-size: 2rem; }
  .hero__subtitle { font-size: 1rem; }
}

/* ====== TIPS ====== */
.tips {
  padding: 4rem 2rem;
  background-color: #fff;
}
.tips__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.tips__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
}
.tips__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}
.tips__item {
  flex: 1 1 calc(50% - 1.5rem);
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  transition: background-color 0.3s ease;
  border-radius: 0.75rem;
}
.tips__item:hover {
  background-color: rgba(0, 85, 164, 0.05);
}
.tips__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  stroke-width: 1.5;
  color: var(--color-accent);
  margin-right: 1rem;
  transition: transform 0.3s ease;
}
.tips__item:hover .tips__icon {
  transform: scale(1.2);
}
.tips__text {
  text-align: left;
}
.tips__heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}
.tips__desc {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .tips__item {
    flex: 1 1 100%;
  }
  .tips__list {
    gap: 1rem;
  }
}
/* ====== WHY US ====== */
.why-us {
  padding: 4rem 2rem;
  background-color: #f1f5f9;
}
.why-us__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.why-us__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
}
.why-us__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.why-us__item {
  flex: 1 1 calc(50% - 2rem);
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease, background-color 0.3s ease;
  padding: 1rem;
  border-radius: 0.75rem;
}
.why-us__item:hover {
  background-color: rgba(255, 188, 0, 0.1);
  transform: translateY(-5px);
}
.why-us__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  stroke-width: 1.5;
  color: var(--color-accent);
  margin-right: 1rem;
  transition: transform 0.3s ease;
}
.why-us__item:hover .why-us__icon {
  transform: rotate(15deg) scale(1.2);
}
.why-us__text {
  text-align: left;
}
.why-us__heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}
.why-us__desc {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* Адаптив */
@media (max-width: 768px) {
  .why-us__item {
    flex: 1 1 100%;
  }
}
/* ====== CASE STUDIES ====== */
.cases {
  padding: 4rem 2rem;
  background-color: #fff;
}
.cases__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.cases__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 2.5rem;
}
.cases__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.cases__item {
  list-style: none;
}
.cases__figure {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.cases__figure:hover {
  transform: scale(1.03);
}
.cases__image {
  display: block;
  width: 100%;
  height: auto;
}
.cases__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  text-align: left;
}
.cases__figure:hover .cases__caption {
  transform: translateY(0);
}
.cases__heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.cases__desc {
  font-size: 1rem;
  line-height: 1.5;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .cases__title { font-size: 1.75rem; }
  .cases__caption { padding: 1rem; }
}
/* ====== CTA ====== */
.cta {
  padding: 5rem 2rem;
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__container {
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInScale 0.8s ease-out 0.2s forwards;
}
.cta__title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #fff;
}
.cta__subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.85);
}
.cta__button {
  font-family: var(--font-heading);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  background-color: var(--color-accent);
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta__button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.2);
}

/* Анимация появления */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Адаптив */
@media (max-width: 768px) {
  .cta__title { font-size: 1.75rem; }
  .cta__subtitle { font-size: 1rem; }
}

/* ====== FAQ ====== */
.faq {
  padding: 4rem 2rem;
  background-color: #fff;
}
.faq__container {
  max-width: 800px;
  margin: 0 auto;
}
.faq__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 2rem;
}
.faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.faq__item {
  border-bottom: 1px solid var(--color-muted);
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--color-text);
  cursor: pointer;
  transition: color 0.3s ease;
}
.faq__question:hover {
  color: var(--color-primary);
}
.faq__icon {
  transition: transform 0.3s ease;
}
.faq__item--open .faq__icon {
  transform: rotate(-180deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq__item--open .faq__answer {
  max-height: 200px; /* достаточно для содержимого */
  margin-bottom: 1rem;
}
.faq__answer p {
  margin: 0.5rem 0;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Адаптив */
@media (max-width: 480px) {
  .faq__question {
    font-size: 1rem;
  }
}
/* ====== COOKIE POPUP ====== */
.cookie-popup {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg);
  color: var(--color-text);
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 90%;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cookie-popup--visible {
  opacity: 1;
  visibility: visible;
}
.cookie-popup__text {
  margin: 0;
  font-size: 0.875rem;
}
.cookie-popup__link {
  color: var(--color-primary);
  text-decoration: underline;
}
.cookie-popup__button {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

/* ABOUT HERO */
.about-hero {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  text-align: center;
}
.about-hero__container {
  max-width: 800px;
  margin: 0 auto;
}
.about-hero__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.about-hero__subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.85);
}
.about-hero__button {
  /* Uses .btn styles */
}

/* MISSION & VISION */
.about-mission {
  padding: 4rem 2rem;
  background-color: var(--color-bg);
}
.about-mission__container {
  display: flex;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.about-mission__item {
  flex: 1 1 300px;
  text-align: center;
  padding: 1rem;
}
.about-mission__icon {
  width: 3rem;
  height: 3rem;
  stroke-width: 1.5;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.about-mission__heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.about-mission__text {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.5;
}

/* TIMELINE */
.about-timeline {
  padding: 4rem 2rem;
  background-color: #f1f5f9;
}
.about-timeline__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 2rem;
}
.about-timeline__list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}
.about-timeline__item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.about-timeline__year {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-accent);
  min-width: 4rem;
}
.about-timeline__event {
  font-size: 1rem;
  color: var(--color-text);
}

/* VALUES */
.about-values {
  padding: 4rem 2rem;
  background-color: var(--color-bg);
}
.about-values__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 2rem;
}
.about-values__list {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.about-values__item {
  text-align: center;
  padding: 1rem;
}
.about-values__icon {
  width: 2.5rem;
  height: 2.5rem;
  stroke-width: 1.5;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.about-values__heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.about-values__desc {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.5;
}

/* TEAM */
.about-team {
  padding: 4rem 2rem;
  background-color: #fff;
}
.about-team__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 2rem;
}
.about-team__list {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.about-team__figure {
  text-align: center;
  overflow: hidden;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
}
.about-team__figure:hover {
  transform: translateY(-5px);
}
.about-team__photo {
  width: 100%;
  border-bottom: 1px solid var(--color-muted);
}
.about-team__info {
  padding: 1rem;
}
.about-team__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
.about-team__role {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* STATS */
.about-stats {
  padding: 4rem 2rem;
  background-color: var(--color-bg);
}
.about-stats__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.about-stats__item {
  text-align: center;
}
.about-stats__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.5rem;
}
.about-stats__label {
  font-size: 1rem;
  color: var(--color-text);
}

/* TESTIMONIALS */
.about-testimonials {
  padding: 4rem 2rem;
  background-color: #fff;
}
.about-testimonials__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 2rem;
}
.about-testimonials__list {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.about-testimonials__quote {
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1rem;
}
.about-testimonials__quote::before {
  content: '"';
  font-size: 2rem;
  position: absolute;
  left: 0;
  top: -0.5rem;
  color: var(--color-accent);
}
.about-testimonials__source {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.about-testimonials__photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.about-testimonials__name {
  font-size: 0.875rem;
  color: var(--color-text);
}

/* PARTNERS */
.about-partners {
  padding: 4rem 2rem;
  background-color: var(--color-bg);
}
.about-partners__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 2rem;
}
.about-partners__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.about-partners__item img {
  max-width: 120px;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.about-partners__item img:hover {
  filter: none;
  transform: scale(1.1);
}

/* ABOUT CTA */
.about-cta {
  padding: 5rem 2rem;
  background: var(--color-primary);
  color: #fff;
  text-align: center;
}
.about-cta__container {
  max-width: 800px;
  margin: 0 auto;
}
.about-cta__title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.about-cta__text {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.85);
}
.about-cta__button {
  /* Uses .btn styles */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-hero__title { font-size: 2rem; }
  .about-hero__subtitle { font-size: 1rem; }
  .about-mission__container { flex-direction: column; }
  .about-timeline__item { flex-direction: column; align-items: flex-start; }
  .about-values__list { gap: 1rem; }
  .about-team__list { gap: 1rem; }
  .about-stats__container { flex-direction: column; gap: 1rem; }
  .about-testimonials__list { gap: 1rem; }
  .about-partners__list { gap: 1rem; }
}

/* ====== SERVICES HERO ====== */
.services-hero {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  text-align: center;
}
.services-hero__container {
  max-width: 800px;
  margin: 0 auto;
}
.services-hero__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.services-hero__subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.85);
}
.services-hero__button {
  /* uses .btn styles */
}

/* ====== SERVICE OFFERINGS ====== */
.services-list {
  padding: 4rem 2rem;
  background-color: var(--color-bg);
}
.services-list__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 2rem;
}
.services-list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.services-list__item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-list__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}
.services-list__icon {
  width: 3rem;
  height: 3rem;
  stroke-width: 1.5;
  color: var(--color-accent);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.services-list__item:hover .services-list__icon {
  transform: scale(1.2);
}
.services-list__heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}
.services-list__desc {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ====== PROCESS FLOW ====== */
.services-process {
  padding: 4rem 2rem;
  background: #fff;
}
.services-process__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 2rem;
}
.services-process__steps {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}
.services-process__step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.services-process__number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  background: var(--color-bg);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}
.services-process__info {}
.services-process__heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.services-process__text {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.5;
}

/* ====== TECHNOLOGIES ====== */
.services-tech {
  padding: 4rem 2rem;
  background-color: var(--color-bg);
}
.services-tech__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 2rem;
}
.services-tech__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}
.services-tech__item {
  background: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  color: var(--color-text);
  transition: transform 0.3s ease;
}
.services-tech__item:hover {
  transform: translateY(-3px);
}

/* ====== SERVICES CTA ====== */
.services-cta {
  padding: 5rem 2rem;
  background: var(--color-primary);
  color: #fff;
  text-align: center;
}
.services-cta__container {
  max-width: 800px;
  margin: 0 auto;
}
.services-cta__title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #fff;
}
.services-cta__button {
  /* uses .btn styles */
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .services-hero__title { font-size: 2rem; }
  .services-hero__subtitle { font-size: 1rem; }
  .services-list__grid { grid-template-columns: 1fr; }
  .services-process__step { flex-direction: column; }
  .services-tech__list { gap: 0.5rem; }
}

/* ====== CONTACT PAGE ====== */
.contact {
  padding: 4rem 2rem;
  background-color: var(--color-bg);
}
.contact__container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.contact__intro {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 2rem;
}
.contact__info p {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.contact-form {
  text-align: left;
}
.contact-form__group {
  margin-bottom: 1rem;
}
.contact-form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text);
}
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-muted);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.contact-form__button {
  display: block;
  width: 100%;
  margin-top: 1rem;
  /* использует .btn стили */
}
.contact-form__success {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-primary);
}
@media (max-width: 480px) {
  .contact__title { font-size: 1.75rem; }
  .contact__intro  { font-size: 0.875rem; }
}

/* ====== POLICY PAGES STYLES ====== */
.pages {
  padding: 4rem 2rem;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.8;
}
.pages .container {
  max-width: 800px;
  margin: 0 auto;
}
.pages h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}
.pages h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.pages p {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.pages ul {
  margin: 1rem 0 1rem 1.5rem;
  padding: 0;
  list-style-type: disc;
}
.pages ul li {
  margin-bottom: 0.75rem;
}
.pages strong {
  font-weight: 600;
}
.pages a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.pages a:hover {
  color: var(--color-accent);
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .pages {
    padding: 2rem 1rem;
  }
  .pages h1 {
    font-size: 1.75rem;
  }
  .pages h2 {
    font-size: 1.25rem;
  }
  .pages p,
  .pages ul li {
    font-size: 0.95rem;
  }
}
