*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

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

.section-title {
  font-weight: 800;
  line-height: 1.2;
  color: #1b2a4a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 16px;
}
.section-title span {
  color: #e8772e;
}

.section-subtitle {
  text-align: center;
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 50px;
}

.btn-primary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #e8772e;
  color: #ffffff;
}
@media (min-width: 768px) {
  .btn-primary {
    padding: 16px 36px;
    font-size: 1rem;
  }
}
.btn-primary:hover {
  background: #d4691f;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(232, 119, 46, 0.4);
          box-shadow: 0 6px 20px rgba(232, 119, 46, 0.4);
}

.btn-outline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn-outline:hover {
  background: #ffffff;
  color: #1b2a4a;
}
@media (min-width: 768px) {
  .btn-outline {
    padding: 16px 36px;
  }
}

.js-loaded .reveal {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.js-loaded .reveal-left {
  opacity: 0;
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.js-loaded .reveal-right {
  opacity: 0;
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.revealed {
  opacity: 1 !important;
  -webkit-transform: translate(0) !important;
          transform: translate(0) !important;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: #1b2a4a;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: #1b2a4a;
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.navbar__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.navbar__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  z-index: 1001;
  white-space: nowrap;
}
@media (min-width: 480px) {
  .navbar__logo {
    font-size: 1.3rem;
    gap: 10px;
  }
}
.navbar__logo .logo-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: #e8772e;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.navbar__logo .logo-icon svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}
.navbar__logo .logo-text span {
  color: #e8772e;
}
@media (min-width: 480px) {
  .navbar__logo .logo-icon {
    width: 40px;
    height: 40px;
  }
}
.navbar__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media (max-width: 1023px) {
  .navbar__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: -webkit-gradient(linear, left top, left bottom, from(#111d33), to(#1b2a4a));
    background: linear-gradient(180deg, #111d33 0%, #1b2a4a 100%);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 100px;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition: opacity 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
    transition: opacity 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
  }
  .navbar__menu.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.navbar__item {
  position: relative;
}
@media (max-width: 1023px) {
  .navbar__item {
    width: 100%;
    opacity: 0;
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
  .navbar__menu.active .navbar__item {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .navbar__item:nth-child(1) {
    -webkit-transition: opacity 0.3s ease 0.06s, -webkit-transform 0.3s ease 0.06s;
    transition: opacity 0.3s ease 0.06s, -webkit-transform 0.3s ease 0.06s;
    transition: opacity 0.3s ease 0.06s, transform 0.3s ease 0.06s;
    transition: opacity 0.3s ease 0.06s, transform 0.3s ease 0.06s, -webkit-transform 0.3s ease 0.06s;
  }
  .navbar__item:nth-child(2) {
    -webkit-transition: opacity 0.3s ease 0.12s, -webkit-transform 0.3s ease 0.12s;
    transition: opacity 0.3s ease 0.12s, -webkit-transform 0.3s ease 0.12s;
    transition: opacity 0.3s ease 0.12s, transform 0.3s ease 0.12s;
    transition: opacity 0.3s ease 0.12s, transform 0.3s ease 0.12s, -webkit-transform 0.3s ease 0.12s;
  }
  .navbar__item:nth-child(3) {
    -webkit-transition: opacity 0.3s ease 0.18s, -webkit-transform 0.3s ease 0.18s;
    transition: opacity 0.3s ease 0.18s, -webkit-transform 0.3s ease 0.18s;
    transition: opacity 0.3s ease 0.18s, transform 0.3s ease 0.18s;
    transition: opacity 0.3s ease 0.18s, transform 0.3s ease 0.18s, -webkit-transform 0.3s ease 0.18s;
  }
  .navbar__item:nth-child(4) {
    -webkit-transition: opacity 0.3s ease 0.24s, -webkit-transform 0.3s ease 0.24s;
    transition: opacity 0.3s ease 0.24s, -webkit-transform 0.3s ease 0.24s;
    transition: opacity 0.3s ease 0.24s, transform 0.3s ease 0.24s;
    transition: opacity 0.3s ease 0.24s, transform 0.3s ease 0.24s, -webkit-transform 0.3s ease 0.24s;
  }
  .navbar__item:nth-child(5) {
    -webkit-transition: opacity 0.3s ease 0.3s, -webkit-transform 0.3s ease 0.3s;
    transition: opacity 0.3s ease 0.3s, -webkit-transform 0.3s ease 0.3s;
    transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s;
    transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s, -webkit-transform 0.3s ease 0.3s;
  }
}
.navbar__link {
  display: block;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  -webkit-transition: color 0.2s ease, background 0.2s ease;
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: 8px;
}
.navbar__link:hover, .navbar__link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 1023px) {
  .navbar__link {
    font-size: 1.15rem;
    padding: 18px 30px;
    width: 100%;
    text-align: center;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}
.navbar__dropdown-toggle {
  cursor: pointer;
}
.navbar__dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 6px;
  vertical-align: middle;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.navbar__dropdown-toggle.open::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.navbar__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 40px rgba(0, 0, 0, 0.16);
          box-shadow: 0 8px 40px rgba(0, 0, 0, 0.16);
  padding: 8px 0;
  opacity: 0;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.navbar__dropdown.open {
  display: block;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 1023px) {
  .navbar__dropdown {
    position: static;
    background: rgba(255, 255, 255, 0.04);
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    min-width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}
.navbar__dropdown-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: #333333;
  font-size: 0.9rem;
  font-weight: 500;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.navbar__dropdown-link svg {
  width: 20px;
  height: 20px;
  fill: #e8772e;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.navbar__dropdown-link:hover {
  background: #f7f8fa;
  color: #e8772e;
  padding-left: 26px;
}
@media (max-width: 1023px) {
  .navbar__dropdown-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 14px 40px;
    font-size: 0.95rem;
    gap: 14px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }
  .navbar__dropdown-link svg {
    fill: #e8772e;
  }
  .navbar__dropdown-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    padding-left: 46px;
  }
}
.navbar__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #e8772e;
  color: #ffffff;
  padding: 10px 24px;
  font-size: 0.9rem;
  margin-left: 8px;
}
.navbar__cta:hover {
  background: #d4691f;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media (max-width: 1023px) {
  .navbar__cta {
    margin: 30px auto 0;
    padding: 16px 40px;
    font-size: 1.05rem;
  }
}
.navbar__menu-footer {
  display: none;
}
@media (max-width: 1023px) {
  .navbar__menu-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 30px 20px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
}

.hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  background: none;
  border: none;
}
@media (max-width: 1023px) {
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(6px, 6px);
          transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(6px, -6px);
          transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  max-height: 900px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #111d33 url('../img/hero-bg.png') center center / cover no-repeat;
  overflow: hidden;
  padding: 100px 20px 60px;
}
@media (max-width: 767px) {
  .hero {
    max-height: none;
  }
}
@media (min-width: 768px) {
  .hero {
    padding: 120px 20px 80px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 29, 51, 0.75) 0%, rgba(27, 42, 74, 0.6) 50%, rgba(17, 29, 51, 0.8) 100%);
}
.hero::after {
  display: none;
}
.hero__shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}
.hero__shape--1 {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 10%;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  -webkit-animation: float 12s ease-in-out infinite;
          animation: float 12s ease-in-out infinite;
}
.hero__shape--2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 8%;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  animation: float 10s ease-in-out infinite reverse;
}
.hero__shape--3 {
  width: 60px;
  height: 60px;
  top: 40%;
  left: 20%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: float 14s ease-in-out infinite;
          animation: float 14s ease-in-out infinite;
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}
.hero__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}
.hero__badge svg {
  width: 16px;
  height: 16px;
  fill: #e8772e;
}
.hero__title {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__title span {
  color: #e8772e;
  display: block;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  -webkit-animation: bounce 2s ease-in-out infinite;
          animation: bounce 2s ease-in-out infinite;
}
.hero__scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}
.hero__scroll-indicator .mouse::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  -webkit-animation: scroll-dot 2s ease-in-out infinite;
          animation: scroll-dot 2s ease-in-out infinite;
}

@-webkit-keyframes pulse-glow {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
    opacity: 0.7;
  }
}

@keyframes pulse-glow {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
    opacity: 0.7;
  }
}
@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(25deg);
            transform: translateY(0) rotate(25deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(30deg);
            transform: translateY(-20px) rotate(30deg);
  }
}
@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(25deg);
            transform: translateY(0) rotate(25deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(30deg);
            transform: translateY(-20px) rotate(30deg);
  }
}
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-50%) translateY(10px);
            transform: translateX(-50%) translateY(10px);
  }
}
@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-50%) translateY(10px);
            transform: translateX(-50%) translateY(10px);
  }
}
@-webkit-keyframes scroll-dot {
  0% {
    top: 8px;
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}
@keyframes scroll-dot {
  0% {
    top: 8px;
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}
.services {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .services {
    padding: 100px 0;
  }
}
.services {
  background: #f7f8fa;
}
.services__grid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.services__card {
  background: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 24px rgba(27, 42, 74, 0.1);
          box-shadow: 0 4px 24px rgba(27, 42, 74, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.services__card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 12px 40px rgba(27, 42, 74, 0.18);
          box-shadow: 0 12px 40px rgba(27, 42, 74, 0.18);
}
.services__card {
  padding: 28px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: block;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}
@media (min-width: 768px) {
  .services__card {
    padding: 40px 28px;
  }
}
.services__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #e8772e;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.services__card:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.services__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(232, 119, 46, 0.1);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.services__icon svg {
  width: 34px;
  height: 34px;
  fill: #e8772e;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
.services__card:hover .services__icon {
  background: #e8772e;
}
.services__card:hover .services__icon svg {
  fill: #ffffff;
}
.services__card-img {
  width: calc(100% + 32px);
  margin: -28px -16px 20px;
  height: 160px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .services__card-img {
    width: calc(100% + 56px);
    margin: -40px -28px 20px;
    height: 180px;
  }
}
.services__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.services__card:hover .services__card-img img {
  transform: scale(1.05);
}
.services__card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1b2a4a;
  margin-bottom: 12px;
  line-height: 1.3;
  word-break: break-word;
}
.services__card-text {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
}
.services__card-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e8772e;
  -webkit-transition: gap 0.2s ease;
  transition: gap 0.2s ease;
}
.services__card:hover .services__card-arrow {
  gap: 12px;
}
.services__card-arrow svg {
  width: 16px;
  height: 16px;
  fill: #e8772e;
}

@media (max-width: 767px) {
  .services-carousel .services__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 0 20px 20px;
    scrollbar-width: none;
  }
  .services-carousel .services__grid::-webkit-scrollbar {
    display: none;
  }
  .services-carousel .services__card {
    min-width: 0;
    width: calc(100vw - 56px);
    flex: 0 0 calc(100vw - 56px);
    scroll-snap-align: center;
  }
}
.services-carousel__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .services-carousel__dots {
    display: none;
  }
}
.services-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dee2e6;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 0;
}
.services-carousel__dot.active {
  background: #e8772e;
  width: 28px;
  border-radius: 5px;
}

.timeline {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .timeline {
    padding: 100px 0;
  }
}
.timeline {
  background: #ffffff;
}
.timeline__wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  max-width: 800px;
}
.timeline__line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e9ecef;
}
@media (min-width: 768px) {
  .timeline__line {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.timeline__items {
  position: relative;
}
.timeline__item {
  position: relative;
  padding-left: 64px;
  padding-bottom: 50px;
}
.timeline__item:last-child {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .timeline__item {
    padding-left: 0;
    width: 50%;
  }
  .timeline__item:nth-child(odd) {
    padding-right: 50px;
    text-align: right;
    margin-left: 0;
  }
  .timeline__item:nth-child(even) {
    padding-left: 50px;
    margin-left: 50%;
  }
}
.timeline__number {
  position: absolute;
  left: 8px;
  top: 0;
  width: 34px;
  height: 34px;
  background: #e8772e;
  color: #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 2;
  -webkit-box-shadow: 0 0 0 4px #ffffff, 0 0 0 6px #e9ecef;
          box-shadow: 0 0 0 4px #ffffff, 0 0 0 6px #e9ecef;
}
@media (min-width: 768px) {
  .timeline__number {
    left: auto;
    right: -17px;
  }
  .timeline__item:nth-child(even) .timeline__number {
    right: auto;
    left: -17px;
  }
}
.timeline__content {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.timeline__content:hover {
  border-color: #e8772e;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.timeline__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1b2a4a;
  margin-bottom: 8px;
}
.timeline__text {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
}

.areas {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .areas {
    padding: 100px 0;
  }
}
.areas {
  background: #f7f8fa;
}
.areas__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.areas__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .areas__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.areas__card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid #e9ecef;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.areas__card:hover {
  border-color: #e8772e;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.areas__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: rgba(232, 119, 46, 0.1);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.areas__icon svg {
  width: 22px;
  height: 22px;
  fill: #e8772e;
}
.areas__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1b2a4a;
  margin-bottom: 4px;
}
.areas__sub {
  font-size: 0.8rem;
  color: #6c757d;
}

.pillars {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .pillars {
    padding: 100px 0;
  }
}
.pillars {
  background: #1b2a4a;
}
.pillars .section-title {
  color: #ffffff;
}
.pillars .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}
.pillars__grid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .pillars__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pillars__card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .pillars__card {
    padding: 40px 28px;
  }
}
.pillars__card:hover {
  background: rgba(255, 255, 255, 0.1);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.pillars__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(232, 119, 46, 0.15);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pillars__icon svg {
  width: 34px;
  height: 34px;
  fill: #e8772e;
}
.pillars__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.pillars__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.cta {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .cta {
    padding: 100px 0;
  }
}
.cta {
  background: #ffffff;
  text-align: center;
}
.cta__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.cta__box {
  background: linear-gradient(135deg, #1b2a4a 0%, #111d33 100%);
  border-radius: 12px;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta__box {
    padding: 60px 30px;
  }
}
.cta__box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 119, 46, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta__title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}
.cta__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta__phone {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.cta__phone-icon {
  width: 52px;
  height: 52px;
  background: #e8772e;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation: phone-ring 2s ease-in-out infinite;
          animation: phone-ring 2s ease-in-out infinite;
}
.cta__phone-icon svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}
.cta__phone-number {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
}
.cta__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

@-webkit-keyframes phone-ring {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  20% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  30% {
    -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
  }
  40% {
    -webkit-transform: rotate(6deg);
            transform: rotate(6deg);
  }
  50%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes phone-ring {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  20% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  30% {
    -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
  }
  40% {
    -webkit-transform: rotate(6deg);
            transform: rotate(6deg);
  }
  50%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.footer {
  background: #111d33;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}
.footer__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.footer__brand {
  max-width: 300px;
}
.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}
.footer__logo .logo-icon {
  width: 36px;
  height: 36px;
  background: #e8772e;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__logo .logo-icon svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}
.footer__logo span {
  color: #e8772e;
}
.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer__contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.footer__contact-item svg {
  width: 18px;
  height: 18px;
  fill: #e8772e;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer__contact-item a {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.footer__contact-item a:hover {
  color: #e8772e;
}
.footer__heading {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.footer__link {
  font-size: 0.9rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.footer__link:hover {
  color: #e8772e;
  padding-left: 4px;
}
.footer__link::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #e8772e;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer__guarantee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__guarantee svg {
  width: 24px;
  height: 24px;
  fill: #e8772e;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer__guarantee p {
  font-size: 0.85rem;
  line-height: 1.5;
}
.footer__map {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
}
.footer__map .footer__heading {
  margin-bottom: 16px;
}
.footer__map-wrap {
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}
#map {
  width: 100%;
  height: 280px;
}
@media (min-width: 768px) {
  #map {
    height: 350px;
  }
}
.map-label {
  background: #1b2a4a;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 4px 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.map-label::before {
  border-top-color: #1b2a4a;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
}
.footer__copy {
  color: rgba(255, 255, 255, 0.4);
}
.footer__author {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}
.footer__author a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
  display: inline-block;
  vertical-align: middle;
}
.footer__author a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.proweb-logo {
  height: 14px;
  width: auto;
  vertical-align: middle;
  margin-left: 2px;
}

.subpage-hero {
  background: linear-gradient(135deg, #1b2a4a 0%, #111d33 100%);
  padding: 140px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.subpage-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 119, 46, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.subpage-hero__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(232, 119, 46, 0.15);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.subpage-hero__icon svg {
  width: 40px;
  height: 40px;
  fill: #e8772e;
}
.subpage-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}
.subpage-hero__title span {
  color: #e8772e;
}
.subpage-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.subpage-content {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .subpage-content {
    padding: 100px 0;
  }
}
.subpage-content__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 900px;
}
.subpage-content__image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.subpage-content__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .subpage-content__image img {
    height: 420px;
  }
}
.subpage-content__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 40px;
}
.subpage-content__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .subpage-content__features {
    grid-template-columns: repeat(2, 1fr);
  }
}
.subpage-content__feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #f7f8fa;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.subpage-content__feature:hover {
  background: #ffffff;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.subpage-content__feature-icon {
  width: 28px;
  height: 28px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.subpage-content__feature-icon svg {
  width: 20px;
  height: 20px;
  fill: #e8772e;
}
.subpage-content__feature-text {
  font-size: 0.95rem;
  color: #333333;
  font-weight: 500;
}

/* ========== 404 ERROR PAGE ========== */
.error-page {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #f7f8fa;
  padding: 120px 20px 60px;
  text-align: center;
}
.error-page__content {
  max-width: 560px;
}
.error-page__icon {
  margin-bottom: 20px;
  opacity: 0.8;
  animation: float 4s ease-in-out infinite;
}
.error-page__code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  color: #1b2a4a;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -4px;
}
.error-page__title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #1b2a4a;
  margin-bottom: 16px;
}
.error-page__text {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 36px;
}
.error-page__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.error-page__links {
  padding-top: 32px;
  border-top: 1px solid #e9ecef;
}
.error-page__links p {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 16px;
}
.error-page__nav {
  display: flex;
  gap: 12px 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.error-page__nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e8772e;
  transition: color 0.2s ease;
}
.error-page__nav a:hover {
  color: #d4691f;
}
.btn-outline--dark {
  color: #1b2a4a !important;
  border-color: #1b2a4a !important;
}
.btn-outline--dark:hover {
  background: #1b2a4a !important;
  color: #ffffff !important;
}