*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1.6;
}

/* Hero section: text left, image right */
.hero {
  --duration: 1.2s;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

/* Omotač za sliku – paralelogram (skos na desnoj strani) */
.hero__image-wrap {
  display: none;
}

@media (min-width: 992px) {
  .hero__image-wrap {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    overflow: hidden;
    transform: skew(-24deg);
    transform-origin: right center;
  }
}

.hero__background {
  background-image: url(images/hero.jpg);
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@media (min-width: 992px) {
  .hero__background {
    will-change: transform;
    transform: skew(24deg) translate(30vw, -90vh);
  }
  .hero.is-animated .hero__background {
    animation: heroBackground var(--duration) 1 cubic-bezier(0.86, 0, 0.07, 1) both;
  }
}

.hero__background,
.hero__layer,
.hero__layer-wrapper,
.hero__mask {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* Mask: beli pravougaonik levo (tekst ostaje prav) */
.hero__mask {
  background: rgba(255, 255, 255, 0.97);
  right: auto;
  width: 100%;
}

@media (min-width: 992px) {
  .hero__mask {
    width: 50%;
  }
}

/* Text content on the left */
.hero__layer {
  left: 0;
  right: auto;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero__layer {
    width: auto;
    left: 0;
    right: 0;
  }
}

.hero__layer-wrapper {
  position: relative;
  padding: 2rem 1.5rem;
  max-width: 36rem;
}

@media (min-width: 992px) {
  .hero__layer-wrapper {
    position: absolute;
    left: 8vw;
    right: auto;
    width: 42vw;
    top: 50%;
    bottom: auto;
    height: auto;
    padding: 3rem 2rem;
    max-width: none;
    transform: translateY(-50%);
  }
}

.hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero__text {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #333;
}

.hero__text:last-child {
  margin-bottom: 0;
}

.hero__button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #1a1a2e;
  border: none;
  border-radius: 0.375rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.hero__button:hover {
  background: #16213e;
}

.hero__button:active {
  transform: scale(0.98);
}

@keyframes heroBackground {
  from {
    transform: skew(24deg) translate(30vw, -90vh);
  }
  to {
    transform: skew(24deg) translate(0, 0);
  }
}

/* ========== How we work ========== */
.how-we-work {
  padding: 4rem 1.5rem 5rem;
  background: #fff;
}

.how-we-work__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.how-we-work__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
}

.how-we-work__subtitle {
  margin: 0 auto 2.5rem;
  max-width: 36rem;
  font-size: 1.0625rem;
  color: #555;
  line-height: 1.6;
  text-align: center;
}

.how-we-work__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .how-we-work__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .how-we-work__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.how-we-work__step {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
  border-top: 4px solid #1a1a2e;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.how-we-work__step:hover {
  background: #f0f1f3;
  border-top-color: #16213e;
}

.how-we-work__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #1a1a2e;
  border-radius: 50%;
}

.how-we-work__step-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
}

.how-we-work__step-text {
  margin: 0;
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
}

/* ========== Services ========== */
.services {
  padding: 4rem 1.5rem 5rem;
  background: #f8f9fa;
}

.services__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.services__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
}

.services__intro {
  margin: 0 auto 3rem;
  max-width: 52rem;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  text-align: center;
}

.services__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.service-card__image-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8e8e8;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.service-card__label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card__title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
}

.service-card__text {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
}

.service-card__text:last-child {
  margin-bottom: 0;
}

.service-card__list {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
}

.service-card__list li {
  margin-bottom: 0.35rem;
}

.service-card__list li:last-child {
  margin-bottom: 0;
}

/* ========== Why choose us ========== */
.why-us {
  padding: 4rem 1.5rem 5rem;
  background: #fff;
}

.why-us__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.why-us__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
}

.why-us__subtitle {
  margin: 0 auto 3rem;
  max-width: 36rem;
  font-size: 1.0625rem;
  color: #555;
  line-height: 1.6;
  text-align: center;
}

.why-us__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .why-us__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.why-us__item {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
  border-left: 4px solid #1a1a2e;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.why-us__item:hover {
  background: #f0f1f3;
  border-left-color: #16213e;
}

.why-us__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #1a1a2e;
  border-radius: 50%;
}

.why-us__item-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
}

.why-us__item-text {
  margin: 0;
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
}

/* ========== Specialization ========== */
.specialization {
  padding: 4rem 1.5rem 5rem;
  background: #fff;
}

.specialization__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.specialization__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
}

.specialization__intro {
  margin: 0 auto 3rem;
  max-width: 52rem;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  text-align: center;
}

.specialization__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.spec-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  background: #f8f9fa;
  border-radius: 0.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .spec-block {
    grid-template-columns: 42% 1fr;
    gap: 0;
  }
  .spec-block:nth-child(even) {
    direction: rtl;
  }
  .spec-block:nth-child(even) > * {
    direction: ltr;
  }
  .spec-block:nth-child(even) .spec-block__body {
    text-align: left;
  }
}

.spec-block__image-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8e8e8;
}

@media (min-width: 768px) {
  .spec-block__image-wrap {
    aspect-ratio: auto;
    min-height: 280px;
  }
}

.spec-block__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spec-block__body {
  padding: 1.5rem 1.5rem 1.75rem;
}

@media (min-width: 768px) {
  .spec-block__body {
    padding: 2rem 2.5rem;
  }
}

.spec-block__label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-block__title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
}

.spec-block__text {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
}

.spec-block__text:last-child {
  margin-bottom: 0;
}

/* ========== FAQ ========== */
.faq {
  padding: 4rem 1.5rem 5rem;
  background: #f8f9fa;
}

.faq__inner {
  max-width: 42rem;
  margin: 0 auto;
}

.faq__title {
  margin: 0 0 2rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq__item {
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq__item:hover {
  border-color: #d0d0d0;
}

.faq__item[open] {
  border-color: #1a1a2e;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.faq__question {
  padding: 1.125rem 1.25rem 1.125rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid #1a1a2e;
  border-bottom: 2px solid #1a1a2e;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq__item[open] .faq__question::before {
  transform: translateY(-40%) rotate(-135deg);
}

.faq__answer {
  padding: 0 1.25rem 1.25rem 3rem;
}

.faq__answer p {
  margin: 0;
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
}

.faq__cta-wrap {
  margin: 2rem 0 0;
  text-align: center;
}

.faq__cta {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #1a1a2e;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.faq__cta:hover {
  background: #16213e;
}

.faq__cta:active {
  transform: scale(0.98);
}

/* CTA buttons in sections */
.services__cta-wrap,
.why-us__cta-wrap,
.specialization__cta-wrap {
  margin: 2.5rem 0 0;
  text-align: center;
}

.services__cta,
.why-us__cta-btn,
.specialization__cta {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #1a1a2e;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.services__cta:hover,
.why-us__cta-btn:hover,
.specialization__cta:hover {
  background: #16213e;
}

.services__cta:active,
.why-us__cta-btn:active,
.specialization__cta:active {
  transform: scale(0.98);
}

/* ========== More info / Contact form ========== */
.more-info {
  padding: 4rem 1.5rem 5rem;
  background: #1a1a2e;
  color: #fff;
}

.more-info__inner {
  max-width: 36rem;
  margin: 0 auto;
}

.more-info__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.more-info__intro {
  margin: 0 0 2rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  text-align: center;
}

.more-info__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.more-info__row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.more-info__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
}

.more-info__required {
  color: #e74c3c;
}

.more-info__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: #1a1a2e;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.375rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.more-info__input::placeholder {
  color: #888;
}

.more-info__input:focus {
  outline: none;
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.more-info__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.more-info__textarea {
  min-height: 120px;
  resize: vertical;
}

.more-info__submit-wrap {
  margin-top: 0.5rem;
}

.more-info__submit {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  background: #fff;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.more-info__submit:hover {
  background: #f0f1f3;
  color: #16213e;
}

.more-info__submit:active {
  transform: scale(0.98);
}

/* ========== Site header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.site-header__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a2e;
  text-decoration: none;
  white-space: nowrap;
}
.site-header__logo img{
    height: 25px;
    scale: 1.3;
  } 

.site-header__logo:hover {
  color: #16213e;
}

.site-header__nav {
  position: relative;
  display: flex;
  align-items: center;
}

.site-header__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__menu a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.site-header__menu a:hover {
  color: #1a1a2e;
}

.site-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.site-header__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #1a1a2e;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 991px) {
  .site-header__toggle {
    display: flex;
  }

  .site-header__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease, visibility 0.2s ease;
  }

  .site-header__menu.is-open {
    max-height: 80vh;
    opacity: 1;
    visibility: visible;
  }

  .site-header__menu li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .site-header__menu li:last-child {
    border-bottom: none;
  }

  .site-header__menu a {
    display: block;
    padding: 0.75rem 1.5rem;
  }
}

@media (min-width: 992px) {
  .site-header__menu {
    max-height: none;
    opacity: 1;
    visibility: visible;
  }
}

/* ========== Site footer ========== */
.site-footer {
  background: #1a1a2e;
  color: #fff;
  padding: 3rem 1.5rem 2rem;
}

.site-footer__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.site-footer__brand {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.site-footer__tagline {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.site-footer__sec {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.site-footer__label {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links li {
  margin-bottom: 0.5rem;
}

.site-footer__links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: #fff;
}

.site-footer__address,
.site-footer__tel {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.site-footer__tel:last-child {
  margin-bottom: 0;
}

.site-footer__tel a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
}

.site-footer__tel a:hover {
  color: #fff;
}

.site-footer__copy {
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

#footer-year {
  font-variant-numeric: tabular-nums;
}

/* ========== About page ========== */
.page-hero {
  position: relative;
  min-height: 28vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.6);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.page-hero__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.page-hero__subtitle {
  margin: 0;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.about-intro {
  padding: 4rem 1.5rem;
  background: #fff;
}

.about-intro__inner {
  max-width: 42rem;
  margin: 0 auto;
}

.about-intro__title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #1a1a2e;
}

.about-intro__lead {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  color: #333;
  line-height: 1.6;
}

.about-intro__text {
  margin: 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

.about-content {
  padding: 4rem 1.5rem;
  background: #f8f9fa;
}

.about-content__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-content__inner {
    grid-template-columns: 42% 1fr;
    gap: 3rem;
  }
}

.about-content__image-wrap {
  border-radius: 0.5rem;
  overflow: hidden;
  background: #e8e8e8;
  aspect-ratio: 4 / 3;
}

.about-content__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content__title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #1a1a2e;
}

.about-content__text {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.about-content__text:last-child {
  margin-bottom: 0;
}

.about-serve {
  padding: 4rem 1.5rem;
  background: #fff;
}

.about-serve__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.about-serve__title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #1a1a2e;
}

.about-serve__lead {
  margin: 0 0 2rem;
  font-size: 1.0625rem;
  color: #555;
  line-height: 1.6;
  max-width: 52rem;
}

.about-serve__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .about-serve__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.about-serve__block {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
  border-left: 4px solid #1a1a2e;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.about-serve__block:hover {
  background: #f0f1f3;
  border-left-color: #16213e;
}

.about-serve__block-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
}

.about-serve__block-text {
  margin: 0;
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
}

.about-serve__industries {
  margin: 0;
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.7;
}

.about-why {
  padding: 4rem 1.5rem;
  background: #f8f9fa;
}

.about-why__inner {
  max-width: 42rem;
  margin: 0 auto;
}

.about-why__title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #1a1a2e;
}

.about-why__text {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

.about-why__text:last-child {
  margin-bottom: 0;
}

.about-values {
  padding: 4rem 1.5rem 5rem;
  background: #fff;
}

.about-values__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.about-values__title {
  margin: 0 0 2rem;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
}

.about-values__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .about-values__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-values__item {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
  border-top: 4px solid #1a1a2e;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.about-values__item:hover {
  background: #f0f1f3;
  border-top-color: #16213e;
}

.about-values__item-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
}

.about-values__item-text {
  margin: 0;
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
}

.about-cta {
  padding: 4rem 1.5rem;
  background: #1a1a2e;
  text-align: center;
}

.about-cta__inner {
  max-width: 36rem;
  margin: 0 auto;
}

.about-cta__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #fff;
}

.about-cta__text {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.about-cta__button {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  background: #fff;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.about-cta__button:hover {
  background: #f0f1f3;
  color: #16213e;
}

.about-cta__button:active {
  transform: scale(0.98);
}

/* ========== Contact page ========== */
.contact-section {
  padding: 4rem 1.5rem 5rem;
  background: #f8f9fa;
}

.contact-section__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-section__inner {
    grid-template-columns: 1fr 320px;
    gap: 3rem;
  }
}

.contact-form-wrap {
  background: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .contact-form-wrap {
    padding: 2.5rem;
  }
}

.contact-form-wrap__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #1a1a2e;
}

.contact-form-wrap__intro {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a2e;
}

.contact-form__required {
  color: #e74c3c;
}

.contact-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: #1a1a2e;
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 0.375rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input::placeholder {
  color: #888;
}

.contact-form__input:focus {
  outline: none;
  border-color: #1a1a2e;
  box-shadow: 0 0 0 2px rgba(26, 26, 46, 0.15);
}

.contact-form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form__submit-wrap {
  margin-top: 0.5rem;
}

.contact-form__submit {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #1a1a2e;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.contact-form__submit:hover {
  background: #16213e;
}

.contact-form__submit:active {
  transform: scale(0.98);
}

.contact-info {
  background: #1a1a2e;
  color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .contact-info {
    padding: 2.25rem;
    position: sticky;
    top: calc(var(--header-height, 60px) + 1rem);
  }
}

.contact-info__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.contact-info__text {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.contact-info__block {
  margin-bottom: 1.25rem;
}

.contact-info__block:last-child {
  margin-bottom: 0;
}

.contact-info__label {
  margin: 0 0 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info__address,
.contact-info__tel,
.contact-info__sec {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.contact-info__tel a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.contact-info__tel a:hover {
  text-decoration: underline;
}

/* ========== Legal pages (Privacy Policy, Terms) ========== */
.legal-content {
  padding: 4rem 1.5rem 5rem;
  background: #fff;
}

.legal-content__inner {
  max-width: 42rem;
  margin: 0 auto;
}

.legal-content__updated {
  margin: 0 0 2rem;
  font-size: 0.9375rem;
  color: #888;
}

.legal-content__inner h2 {
  margin: 2.5rem 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
}

.legal-content__inner h2:first-of-type {
  margin-top: 0;
}

.legal-content__inner p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

.legal-content__inner ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

.legal-content__inner li {
  margin-bottom: 0.5rem;
}

.legal-content__inner li:last-child {
  margin-bottom: 0;
}

.legal-content__inner a {
  color: #1a1a2e;
  text-decoration: underline;
}

.legal-content__inner a:hover {
  color: #16213e;
}

.legal-content__contact {
  margin-top: 1rem;
  padding: 1.25rem;
  background: #f8f9fa;
  border-radius: 0.375rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.legal-content__contact a {
  font-weight: 500;
}
