@charset "UTF-8";
/* RESET */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

ul,
li {
  list-style: none;
}

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

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

body {
  font-family: "Outfit", sans-serif;
  line-height: 1.4;
  color: #0c1a33;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  width: 100%;
  padding: 26px 0;
  background: #0a2a6a;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 10;
  /* ЛОГО */
  /* МЕНЮ ДЛЯ ДЕСКТОПА */
  /* =====================================
     BURGER
     ===================================== */
}
.header .header__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.25);
  transition: 0.3s;
}
.header .logo:hover {
  color: #a8c9ff;
}
.header .nav ul {
  display: flex;
  gap: 40px;
}
.header .nav ul li a {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  padding-bottom: 4px;
  position: relative;
  transition: 0.3s;
  /* underline эффект */
}
.header .nav ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: 0.3s ease;
}
.header .nav ul li a:hover {
  color: #d9e6ff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}
.header .nav ul li a:hover::after {
  width: 100%;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}
.header .burger {
  width: 30px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.header .burger span {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}
.header .burger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header .burger.active span:nth-child(2) {
  opacity: 0;
}
.header .burger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background: #0a2a6a;
  padding: 110px 30px;
  transition: 0.35s ease;
  z-index: 999;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-menu ul li a {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}
.mobile-menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: 0.3s;
}
.mobile-menu ul li a:hover {
  color: #cfe0ff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}
.mobile-menu ul li a:hover::after {
  width: 100%;
}
.mobile-menu.active {
  right: 0;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 998;
}
.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 900px) {
  .header .nav {
    display: none;
  }
  .header .burger {
    display: flex;
  }
}
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* Затемнение */
}
.hero .hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.hero .hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.hero .hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.hero .hero__content {
  max-width: 550px;
  text-align: left;
  color: #ffffff;
}
.hero .hero__content h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 25px;
}
.hero .hero__content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}
.hero .hero__content .hero__buttons {
  display: flex;
  gap: 20px;
}
.hero .hero__content .hero__buttons .btn-primary {
  padding: 14px 32px;
  background: #ffffff;
  color: #0a2a6a;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}
.hero .hero__content .hero__buttons .btn-primary:hover {
  background: #d7e6ff;
}
.hero .hero__content .hero__buttons .btn-outline {
  padding: 14px 32px;
  border: 2px solid #ffffff;
  border-radius: 6px;
  color: #ffffff;
  font-weight: 600;
  transition: 0.3s;
}
.hero .hero__content .hero__buttons .btn-outline:hover {
  background: #ffffff;
  color: #0a2a6a;
}

@media (max-width: 1100px) {
  .hero .hero__content {
    max-width: 480px;
  }
  .hero .hero__content h1 {
    font-size: 46px;
  }
}
@media (max-width: 900px) {
  .hero {
    height: auto;
    padding: 120px 0;
  }
  .hero .hero__inner {
    justify-content: center;
  }
  .hero .hero__content {
    text-align: center;
  }
  .hero .hero__content h1 {
    font-size: 42px;
  }
  .hero .hero__buttons {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .hero .hero__content h1 {
    font-size: 32px;
  }
  .hero .hero__content p {
    font-size: 16px;
  }
  .hero .hero__buttons {
    flex-direction: column;
    gap: 15px;
  }
  .hero .hero__buttons .btn-primary,
  .hero .hero__buttons .btn-outline {
    width: 100%;
    text-align: center;
  }
}
.studio-block {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  position: relative;
  background: #0a2a6a;
  /* ALTERNATE LAYOUT (image right) */
}
.studio-block .studio-block__image {
  flex: 1;
}
.studio-block .studio-block__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.studio-block .studio-block__content {
  flex: 1;
  color: #ffffff;
}
.studio-block .studio-block__content h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.15;
  color: #ffffff;
}
.studio-block .studio-block__content p {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.95;
  line-height: 1.7;
}
.studio-block .studio-block__content .studio-block__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.studio-block .studio-block__content .studio-block__list li {
  font-size: 18px;
  font-weight: 500;
  color: #d7e6ff;
}
.studio-block--reverse {
  flex-direction: row-reverse;
}

@media (max-width: 900px) {
  .studio-block {
    flex-direction: column;
    text-align: center;
  }
  .studio-block--reverse {
    flex-direction: column;
  }
  .studio-block .studio-block__content h2 {
    font-size: 36px;
  }
}
@media (max-width: 600px) {
  .studio-block {
    padding: 80px 0;
  }
  .studio-block .studio-block__content p {
    font-size: 16px;
  }
  .studio-block .studio-block__list li {
    font-size: 16px;
  }
}
.services {
  background: #0a2a6a;
  padding: 40px 0;
}
.services .services__title {
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 60px;
}
.services .services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.services .service-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 40px 30px;
  border-radius: 14px;
  text-align: center;
  color: #ffffff;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.services .service-card .service-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
}
.services .service-card .service-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: #ffffff;
  stroke-width: 3.5;
  /* ТОЛЩЕ */
  fill: none;
  transition: 0.3s;
  animation: float 4s ease-in-out infinite;
}
.services .service-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}
.services .service-card p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.5;
}
.services .service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}
.services .service-card:hover svg {
  transform: scale(1.07);
}

/* мягкое качание */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}
/* адаптив */
@media (max-width: 1100px) {
  .services .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services {
    padding: 80px 0;
  }
  .services .services__grid {
    grid-template-columns: 1fr;
  }
}
.why {
  background: #071d4a;
  padding: 40px 0;
}
.why .why__inner {
  max-width: 1300px;
  margin: 0 auto;
}
.why .why__header {
  text-align: left;
  margin-bottom: 60px;
  color: #ffffff;
}
.why .why__header h2 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
}
.why .why__header h2 span {
  color: #8fbaff;
}
.why .why__header p {
  margin-top: 18px;
  max-width: 620px;
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
}
.why .why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.why .why-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 34px 30px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}
.why .why-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 700;
  color: #ffffff;
}
.why .why-card p {
  font-size: 16px;
  line-height: 1.55;
  opacity: 0.92;
  margin-bottom: 28px;
}
.why .why-card .why-btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 8px;
  background: transparent;
  border: 2px solid #8fbaff;
  color: #8fbaff;
  font-weight: 600;
  transition: 0.3s ease;
}
.why .why-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.14);
}
.why .why-card:hover .why-btn {
  background: #8fbaff;
  color: #071d4a;
}

/* 📱 Адаптив */
@media (max-width: 1000px) {
  .why .why__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .why .why__grid {
    grid-template-columns: 1fr;
  }
  .why .why__header h2 {
    font-size: 36px;
  }
}
.reviews {
  background: #071d4a;
  padding: 120px 0;
}
.reviews .reviews__title {
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 50px;
}
.reviews .swiper.reviews-slider {
  padding-bottom: 50px;
}
.reviews .review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  /* ВАЖНО — одинаковая высота */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 30px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
  text-align: center;
}
.reviews .review-card .review-icon {
  font-size: 38px;
  color: #8fbaff;
  margin-bottom: 20px;
}
.reviews .review-card .review-text {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 22px;
  flex-grow: 1;
  /* РАСТЯГИВАЕТ текст, чтобы высоты совпадали */
  display: flex;
  align-items: center;
}
.reviews .review-card .review-author {
  font-size: 16px;
  font-weight: 600;
  color: #8fbaff;
  margin-top: 10px;
}
.reviews .review-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}
.reviews .swiper-pagination-bullet {
  background: #8fbaff;
  opacity: 0.5;
}
.reviews .swiper-pagination-bullet-active {
  background: #ffffff;
  opacity: 1;
}

.footer {
  background: #071d4a;
  padding: 80px 0 40px;
  color: #ffffff;
  /* 📱 ADAPTIVE */
}
.footer .footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 50px;
}
.footer .footer__inner ul {
  list-style: none;
}
.footer .footer__inner ul li {
  margin-bottom: 12px;
  font-size: 16px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer .footer__inner ul li .footer-icon {
  font-size: 18px;
  opacity: 0.8;
}
.footer .footer__nav ul {
  text-align: right;
}
.footer .footer__nav ul a {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  transition: 0.3s ease;
}
.footer .footer__nav ul a:hover {
  color: #8fbaff;
}
.footer .footer__nav ul li:not(:last-child) {
  margin-bottom: 12px;
}
.footer .footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  text-align: center;
}
.footer .footer__bottom p {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 18px;
}
.footer .footer__bottom .footer__legal {
  display: flex;
  justify-content: center;
  gap: 26px;
}
.footer .footer__bottom .footer__legal a {
  color: #ffffff;
  font-size: 15px;
  opacity: 0.85;
  transition: 0.3s;
}
.footer .footer__bottom .footer__legal a:hover {
  color: #8fbaff;
}
@media (max-width: 900px) {
  .footer .footer__inner {
    flex-direction: column;
    text-align: left;
  }
  .footer .footer__inner .footer__nav ul {
    text-align: left;
  }
  .footer .footer__legal {
    flex-direction: column;
    gap: 12px;
  }
}

.about-hero {
  background: #071d4a;
  padding: 140px 0 120px;
  text-align: center;
  color: #ffffff;
}
.about-hero .about-hero__content {
  max-width: 700px;
  margin: 0 auto;
}
.about-hero .about-hero__content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}
.about-hero .about-hero__content p {
  font-size: 20px;
  opacity: 0.9;
  line-height: 1.6;
}

/* ===========================
   ABOUT MAIN
   =========================== */
.about-main {
  background: #0a2a6a;
  padding: 40px 0;
}
.about-main .about-main__inner {
  display: flex;
  align-items: center;
  gap: 50px;
}
.about-main .about-main__text {
  flex: 1;
  color: #ffffff;
}
.about-main .about-main__text h2 {
  font-size: 42px;
  margin-bottom: 25px;
}
.about-main .about-main__text p {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
}
.about-main .about-main__image {
  flex: 1;
}
.about-main .about-main__image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  -o-object-fit: cover;
     object-fit: cover;
}

/* ===========================
   HISTORY SECTION
   =========================== */
.history-section {
  background: #071d4a;
  padding: 40px 0;
  color: #ffffff;
  text-align: center;
}
.history-section .history__inner {
  max-width: 800px;
  margin: 0 auto;
}
.history-section .history__inner h2 {
  font-size: 42px;
  margin-bottom: 25px;
}
.history-section .history__inner p {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
}

.values {
  background: #0a2a6a;
  padding: 120px 0;
  color: #ffffff;
}
.values h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
}
.values .values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.values .value-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 40px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}
.values .value-card .value-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
}
.values .value-card .value-card__icon svg {
  width: 100%;
  height: 100%;
  animation: valueIconFloat 5s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.values .value-card .value-card__icon .icon-line {
  fill: none;
  stroke: #8fbaff;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.values .value-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.values .value-card p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.6;
}
.values .value-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}
.values .value-card:hover .value-card__icon svg {
  transform: translateY(-4px) scale(1.05);
}

/* лёгкая анимация иконок */
@keyframes valueIconFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}
/* адаптив, если ещё не был */
@media (max-width: 900px) {
  .values .values__grid {
    grid-template-columns: 1fr;
  }
}
/* ===========================
   ADAPTIVE
   =========================== */
@media (max-width: 900px) {
  .about-main .about-main__inner {
    flex-direction: column;
    text-align: center;
  }
  .values .values__grid {
    grid-template-columns: 1fr;
  }
  .about-hero h1 {
    font-size: 42px !important;
  }
}
.contact-section {
  background: #071d4a;
  padding: 40px 0;
  color: #ffffff;
  /* LEFT FORM */
  /* RIGHT INFO */
}
.contact-section .contact__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
.contact-section .contact__form-wrapper {
  flex: 1;
}
.contact-section .contact__form-wrapper h2 {
  font-size: 46px;
  margin-bottom: 30px;
  font-weight: 700;
}
.contact-section .contact__form-wrapper .contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-section .contact__form-wrapper .contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-section .contact__form-wrapper .contact-form .form-group label {
  font-size: 16px;
  opacity: 0.9;
}
.contact-section .contact__form-wrapper .contact-form .form-group input,
.contact-section .contact__form-wrapper .contact-form .form-group textarea {
  padding: 14px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 16px;
  transition: 0.3s;
}
.contact-section .contact__form-wrapper .contact-form .form-group input:focus,
.contact-section .contact__form-wrapper .contact-form .form-group textarea:focus {
  border-color: #8fbaff;
  background: rgba(255, 255, 255, 0.12);
}
.contact-section .contact__form-wrapper .contact-form .form-group textarea {
  height: 150px;
  resize: none;
}
.contact-section .contact__form-wrapper .contact-form .contact-btn {
  margin-top: 10px;
  padding: 14px 28px;
  background: #8fbaff;
  color: #071d4a;
  font-weight: 700;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}
.contact-section .contact__form-wrapper .contact-form .contact-btn:hover {
  background: #ffffff;
}
.contact-section .contact__info {
  flex: 1;
}
.contact-section .contact__info h3 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 700;
}
.contact-section .contact__info ul {
  list-style: none;
  margin-bottom: 40px;
}
.contact-section .contact__info ul li {
  margin-bottom: 12px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.9;
}
.contact-section .contact__info ul li span {
  font-size: 20px;
  opacity: 0.8;
}

/* ADAPTIVE */
@media (max-width: 900px) {
  .contact-section .contact__inner {
    flex-direction: column;
  }
  .contact-section .contact__info {
    margin-top: 40px;
  }
}
.contact-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 10, 32, 0.75);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.contact-popup__content {
  background: #ffffff;
  padding: 40px 50px;
  border-radius: 14px;
  text-align: center;
  max-width: 400px;
  animation: popupFade 0.4s ease;
  color: #071d4a;
}
.contact-popup__content h3 {
  font-size: 26px;
  margin-bottom: 12px;
  font-weight: 700;
}
.contact-popup__content p {
  font-size: 16px;
}

@keyframes popupFade {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.portfolio-hero {
  background: #071d4a;
  padding: 40px 0 40px;
  text-align: center;
  color: #ffffff;
}
.portfolio-hero .portfolio-hero__inner {
  max-width: 700px;
  margin: 0 auto;
}
.portfolio-hero .portfolio-hero__inner h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-hero .portfolio-hero__inner p {
  font-size: 20px;
  opacity: 0.9;
  line-height: 1.6;
}

/* PORTFOLIO BLOCKS */
.portfolio-block {
  background: #0a2a6a;
  padding: 120px 0;
  color: #ffffff;
}
.portfolio-block--reverse .portfolio-block__inner {
  flex-direction: row-reverse;
}
.portfolio-block .portfolio-block__inner {
  display: flex;
  gap: 50px;
  align-items: center;
}
.portfolio-block .portfolio-block__text {
  flex: 1;
}
.portfolio-block .portfolio-block__text h2 {
  font-size: 46px;
  margin-bottom: 20px;
  font-weight: 700;
}
.portfolio-block .portfolio-block__text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0.95;
}
.portfolio-block .portfolio-block__text h3 {
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 600;
}
.portfolio-block .portfolio-block__text ul {
  padding-left: 20px;
}
.portfolio-block .portfolio-block__text ul li {
  margin-bottom: 10px;
  font-size: 17px;
  opacity: 0.9;
}
.portfolio-block .portfolio-block__image {
  flex: 1;
}
.portfolio-block .portfolio-block__image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  -o-object-fit: cover;
     object-fit: cover;
}

/* ADAPTIVE */
@media (max-width: 900px) {
  .portfolio-block .portfolio-block__inner {
    flex-direction: column;
    text-align: center;
  }
  .portfolio-block--reverse .portfolio-block__inner {
    flex-direction: column;
  }
  .portfolio-block__image img {
    width: 100%;
    margin-top: 30px;
  }
}
.why-photos {
  padding: 40px 0;
  background: #0a2a6a;
  color: #ffffff;
}
.why-photos .why-photos__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #ffffff;
}
.why-photos .why-photos__text {
  font-size: 20px;
  max-width: 900px;
  line-height: 1.7;
  margin-bottom: 28px;
  color: #e8f0ff;
}
.why-photos .mt-60 {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .why-photos {
    padding: 60px 0;
  }
  .why-photos .why-photos__title {
    font-size: 34px;
  }
  .why-photos .why-photos__text {
    font-size: 18px;
  }
}

.services-hero {
  padding: 160px 0 120px;
  background: #0f294d;
  color: #fff;
  text-align: center;
}
.services-hero .services-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}
.services-hero .services-hero__inner h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}
.services-hero .services-hero__inner p {
  font-size: 22px;
  line-height: 1.6;
  color: #e1ebff;
}
@media (max-width: 768px) {
  .services-hero {
    padding: 120px 0 80px;
  }
  .services-hero .services-hero__inner h1 {
    font-size: 38px;
  }
  .services-hero .services-hero__inner p {
    font-size: 18px;
  }
}

/* ============================
   SERVICES GRID
============================ */
.services-grid-section {
  padding: 100px 0;
  background: #f7faff;
}
.services-grid-section .services-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  font-weight: 700;
  color: #0f294d;
}
.services-grid-section .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* ============================
   SERVICE CARD
============================ */
.service-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  padding-bottom: 30px;
  overflow: hidden;
  transition: 0.3s ease;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.service-card .service-card__img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.service-card .service-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease;
}
.service-card:hover img {
  transform: scale(1.07);
}
.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f294d;
  margin: 25px 0 12px;
}
.service-card p {
  font-size: 16px;
  color: #3b4a66;
  padding: 0 20px;
  line-height: 1.6;
  margin-bottom: 25px;
}
.service-card .service-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #0f294d;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.service-card .service-btn:hover {
  background: #163a6e;
}

.terms-page {
  padding: 100px 0;
  background: #f7faff;
  color: #0f294d;
}
.terms-page h1 {
  font-size: 52px;
  margin-bottom: 40px;
  font-weight: 700;
}
.terms-page h2 {
  font-size: 30px;
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: 700;
}
.terms-page p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #1b3156;
  max-width: 900px;
}
@media (max-width: 768px) {
  .terms-page {
    padding: 70px 0;
  }
  .terms-page h1 {
    font-size: 36px;
  }
  .terms-page h2 {
    font-size: 24px;
  }
  .terms-page p {
    font-size: 16px;
  }
}

.privacy-page {
  padding: 100px 0;
  background: #f7faff;
  color: #0f294d;
}
.privacy-page h1 {
  font-size: 52px;
  margin-bottom: 40px;
  font-weight: 700;
}
.privacy-page h2 {
  font-size: 30px;
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: 700;
}
.privacy-page p,
.privacy-page li {
  font-size: 18px;
  line-height: 1.8;
  color: #1c2f54;
  max-width: 900px;
  margin-bottom: 20px;
}
.privacy-page ul {
  padding-left: 20px;
  margin-bottom: 25px;
}
.privacy-page ul li {
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .privacy-page {
    padding: 70px 0;
  }
  .privacy-page h1 {
    font-size: 36px;
  }
  .privacy-page h2 {
    font-size: 24px;
  }
  .privacy-page p,
  .privacy-page li {
    font-size: 16px;
  }
}

.cookies-page {
  padding: 100px 0;
  background: #f7faff;
  color: #0f294d;
}
.cookies-page h1 {
  font-size: 52px;
  margin-bottom: 40px;
  font-weight: 700;
}
.cookies-page h2 {
  font-size: 30px;
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: 700;
}
.cookies-page p,
.cookies-page li {
  font-size: 18px;
  line-height: 1.8;
  color: #1c2f54;
  max-width: 900px;
  margin-bottom: 20px;
}
.cookies-page ul {
  padding-left: 20px;
  margin-bottom: 25px;
}
.cookies-page ul li {
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .cookies-page {
    padding: 70px 0;
  }
  .cookies-page h1 {
    font-size: 36px;
  }
  .cookies-page h2 {
    font-size: 24px;
  }
  .cookies-page p,
  .cookies-page li {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */