/* ===================================
    Crafto - It business
====================================== */
/* font */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&amp;display=swap");
/* variable */
:root {
  --base-color: #074eb9;
  --dark-gray: #252840;
  --black: #05060a;
  --medium-gray: #7d8087;
  --very-light-gray: #f0f2f8;
  --primary-font: "Plus Jakarta Sans", sans-serif;
}
/* reset */
body {
  line-height: 29px;
}
/* header */
header .navbar-brand img {
  max-height: 50px;
}
header .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
}
header .navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
header .navbar-brand .brand-text strong {
  font-size: 15px;
  font-weight: 800;
  color: #800020 !important;
  white-space: nowrap;
}
header .navbar-brand .brand-text small {
  font-size: 11px;
  font-weight: 600;
  color: #800020 !important;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
}
.navbar .navbar-nav .nav-link {
  font-size: 15px;
}
header .btn.btn-rounded.btn-large {
  padding: 10px 26px;
  font-size: 13px;
  font-weight: 500;
}
.sticky .header-transparent .header-button .btn {
  color: var(--dark-gray);
  border-color: var(--extra-medium-gray);
}
.sticky .header-transparent .header-button .btn:hover {
  border-color: var(--dark-gray);
  color: var(--white);
  background: var(--dark-gray);
}
header.sticky.sticky-active [data-header-hover="light"] .widget-text i {
  color: var(--white);
}
/* accordion style 02 */
/* .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu {
  background-color: var(--dark-gray);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
} */
.navbar
  .navbar-nav
  .dropdown.dropdown-with-icon-style02
  .dropdown-menu
  li:hover
  a,
.navbar
  .navbar-nav
  .dropdown.dropdown-with-icon-style02
  .dropdown-menu
  li.active
  a {
  opacity: 0.5;
}
/* btn */
[class*="btn-transparent"],
[class*=" btn-transparent"] {
  font-weight: 500;
}
.btn {
  text-transform: none;
  font-family: var(--primary-font);
}
.btn.btn-switch-text.btn-extra-large > span {
  padding: 19px 40px;
}
.btn-gradient-purple-pink {
  background-image: linear-gradient(to right, #0b58cb, #e94037, #0b58cb);
  background-size: 200% auto;
  color: var(--white);
}
/* bg gradient color */
.bg-gradient-dark-gray-transparent {
  background: -webkit-linear-gradient(
    right,
    rgba(24, 25, 28, 0.5),
    rgba(255, 255, 255, 0)
  );
  background: linear-gradient(
    to right,
    rgba(24, 25, 28, 0.5),
    rgba(255, 255, 255, 0)
  );
}
.bg-gradient-very-light-gray-transparent {
  background: -webkit-linear-gradient(
    right,
    rgba(240, 244, 253, 1),
    rgba(255, 255, 255, 0)
  );
  background: linear-gradient(
    to right,
    rgba(240, 244, 253, 1),
    rgba(255, 255, 255, 0)
  );
}
.bg-gradient-flamingo-red-transparent {
  background: -webkit-linear-gradient(
    right,
    rgba(243, 69, 59, 1),
    rgba(255, 255, 255, 0)
  );
  background: linear-gradient(
    to right,
    rgba(243, 69, 59, 1) 10%,
    rgba(255, 255, 255, 0) 95%
  );
}
.bg-gradient-base-color-transparent {
  background: -webkit-linear-gradient(
    right,
    rgba(15, 89, 201, 1),
    rgba(255, 255, 255, 0)
  );
  background: linear-gradient(
    to right,
    rgba(15, 89, 201, 1) 10%,
    rgba(255, 255, 255, 0) 95%
  );
}
.bg-gradient-light-gray-transparent {
  background: -webkit-linear-gradient(
    right,
    rgba(222, 230, 244, 1),
    rgba(255, 255, 255, 0)
  );
  background: linear-gradient(
    to right,
    rgba(222, 230, 244, 1),
    rgba(255, 255, 255, 0)
  );
}
.bg-midnight-blue {
  background-color: #1e2033;
}
/* text */
.text-flamingo {
  color: #e55b53;
}
.text-gradient-orange-sky-blue {
  background-image: linear-gradient(
    to right,
    #5e70f3,
    #6170f1,
    #8074dc,
    #b87bb6,
    #ec8192
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 25px;
}
/* portfolio filter */
.portfolio-filter li {
  padding: 0 18px;
  line-height: 24px;
}
/* blog */
.categories-btn {
  font-size: 11px;
}
/* page title */
.page-title-extra-large h1 {
  font-size: 4rem;
  line-height: 4rem;
}
.page-title-extra-large h2 {
  font-size: 17px;
  line-height: 28px;
  margin: 0 auto;
}
.process-step-style-05 .progress-step-separator {
  bottom: -10px;
  height: 100%;
  z-index: -1;
}
/* height */
.h-72px {
  height: 72px !important;
}
#map {
  height: 650px;
  border-radius: 6px 0 0 6px;
}
/* margin top */
.mt-minus-50px {
  margin-top: -50px;
}
/* line-height */
.lh-200 {
  line-height: 12.5rem;
}
/* bottom */
.bottom-auto {
  bottom: auto;
}
/* footer */
footer .footer-logo img {
  max-height: 50px;
}
footer ul li {
  margin-bottom: 0;
}
.footer-light a:hover,
.footer-navbar li a:hover {
  color: var(--dark-gray);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
  background: linear-gradient(165deg, #0a1220 0%, #101c32 45%, #152744 100%);
  color: rgba(255, 255, 255, 0.82);
}
.site-footer-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(139, 0, 0, 0.28), transparent 40%),
    radial-gradient(circle at 92% 88%, rgba(47, 143, 110, 0.16), transparent 36%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 40px 40px, 40px 40px;
}
.site-footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr 0.95fr;
  gap: 36px;
  padding-bottom: 48px;
}
.site-footer-brand p {
  margin: 18px 0 22px !important;
  font-size: 0.92rem !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.68) !important;
  max-width: 26rem;
}
.site-footer-logo {
  display: inline-block;
}
.site-footer-logo img {
  max-height: 56px;
  width: auto;
  display: block;
}
.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.site-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff !important;
  font-size: 0.95rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.site-footer-social a:hover {
  background: #8B0000;
  border-color: #8B0000;
  transform: translateY(-2px);
}
.site-footer-kicker {
  display: block;
  color: #e8b4b4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.site-footer-col h4 {
  margin: 0 0 18px !important;
  color: #fff !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
}
.site-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer-links li {
  margin-bottom: 10px;
}
.site-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 0.9rem;
  text-decoration: none !important;
  transition: color 0.2s ease, transform 0.2s ease;
}
.site-footer-links a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}
.site-footer-links a:hover {
  color: #fff !important;
  transform: translateX(3px);
}
.site-footer-links a:hover::before {
  background: #8B0000;
  transform: scale(1.2);
}
.site-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.site-footer-contact li {
  display: flex;
  gap: 14px;
  align-items: center;
}
.site-footer-contact-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 0, 0, 0.22);
  border: 1px solid rgba(139, 0, 0, 0.35);
  color: #f0c0c0;
  font-size: 1rem;
  line-height: 1;
}
.site-footer-contact-icon i {
  display: block;
  line-height: 1;
  font-size: 1.05rem;
}
.site-footer-contact-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-height: 42px;
}
.site-footer-contact-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.2;
  margin: 0;
}
.site-footer-contact a {
  color: #fff !important;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none !important;
}
.site-footer-contact a:hover {
  color: #f0c0c0 !important;
}
.site-footer-contact p {
  margin: 0 !important;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.78) !important;
}
.site-footer-fb-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 20px;
  backdrop-filter: blur(8px);
}
.site-footer-connect {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.site-footer-connect-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 14px;
  border-radius: 12px;
  color: #fff !important;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.site-footer-connect-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.site-footer-connect-btn--fb { background: #1877f2; }
.site-footer-connect-btn--ig { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); }
.site-footer-connect-btn--in { background: #0a66c2; }
.site-footer-connect-btn--wa { background: #25d366; }
.site-footer-connect-btn--call { background: #8B0000; }
.site-footer-connect-btn--mail { background: rgba(255, 255, 255, 0.12); }
.site-footer-fb-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.site-footer-fb-head img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
}
.site-footer-fb-head strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.3;
}
.site-footer-fb-head span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}
.site-footer-fb-card > p {
  margin: 0 0 16px !important;
  font-size: 0.85rem !important;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.62) !important;
}
.site-footer-fb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  border-radius: 999px;
  background: #1877f2;
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.2s ease;
}
.site-footer-fb-btn:hover {
  background: #166fe0;
  transform: translateY(-1px);
}
.site-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0 22px;
  text-align: center;
}
.site-footer-bottom p {
  margin: 0 !important;
  font-size: 0.82rem !important;
  color: rgba(255, 255, 255, 0.52) !important;
}
.site-footer-bottom a {
  color: #fff !important;
  font-weight: 600;
  text-decoration: none !important;
}
.site-footer-bottom a:hover {
  color: #f0c0c0 !important;
}
@media (max-width: 1199px) {
  .site-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 28px;
  }
  .site-footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 767px) {
  .site-footer {
    padding-top: 56px;
  }
  .site-footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 36px;
  }
}

.float-social {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 1.15rem;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.float-social-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
}
.float-social-btn--wa { background: #25d366; }
.float-social-btn--fb { background: #1877f2; }
.float-social-btn--ig { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); }
.float-social-btn--in { background: #0a66c2; }
.float-social-btn--call { background: #8B0000; }
@media (max-width: 767px) {
  .float-social {
    right: 14px;
    bottom: 16px;
    gap: 8px;
  }
  .float-social-btn {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .float-social-btn,
  .site-footer-connect-btn,
  .site-footer-social a {
    transition: none;
  }
}

@media (max-width: 1299px) {
  .navbar .navbar-nav .nav-link {
    font-size: 16px;
  }
  header .btn.btn-rounded.btn-large {
    padding: 10px 15px;
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .navbar .navbar-nav .nav-link {
    font-size: 15px;
  }
  header .btn.btn-rounded.btn-large {
    padding: 10px 10px;
    font-size: 11px;
  }
}
@media (max-width: 991px) {
  /* .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu {
    width: calc(100% + 30px) !important;
    margin-left: -15px;
    padding: 10px 45px;
    margin-bottom: 0;
    margin-right: -15px;
  } */
  .navbar
    .navbar-nav
    .dropdown.dropdown-with-icon-style02
    .dropdown-menu
    li:last-child
    a {
    padding-bottom: 17px;
  }
  [data-mobile-nav-style="full-screen-menu"]
    .navbar-full-screen-menu-inner
    .navbar-nav
    .dropdown.dropdown-with-icon-style02
    .dropdown-menu
    li
    a
    i {
    font-size: 19px;
  }
  header .btn.btn-rounded.btn-large {
    color: var(--dark-gray);
    border-color: var(--extra-medium-gray);
    padding: 10px 15px;
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .portfolio-filter li {
    padding: 0;
  }
}

.navbar .navbar-nav .nav-link,
.navbar.header-transparent .navbar-nav .nav-link,
.navbar.header-reverse .navbar-nav .nav-link,
header.sticky .navbar .navbar-nav .nav-link,
header .navbar .navbar-nav .nav-link {
  color: #8B0000 !important;
  font-weight: 700 !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  width: 100%;
}
.site-topbar {
  background: linear-gradient(90deg, #0f1a2e 0%, #1a2744 55%, #231a1a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
}
.site-topbar-left,
.site-topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.site-topbar-left a,
.site-topbar-location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none !important;
  white-space: nowrap;
}
.site-topbar-left a:hover {
  color: #fff !important;
}
.site-topbar-left i,
.site-topbar-location i {
  color: #e8b4b4;
  font-size: 0.78rem;
}
.site-topbar-tag {
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
}
.site-topbar-social {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-topbar-social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.2s ease;
}
.site-topbar-social a:hover {
  background: #8B0000;
  transform: translateY(-1px);
}
.site-main-nav {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-main-nav--solid {
  background: #fff !important;
  border-bottom: 1px solid #ece6dc;
  box-shadow: 0 8px 24px rgba(28, 25, 22, 0.06);
}
.site-header.sticky .site-main-nav--solid,
header.sticky .site-main-nav--solid {
  box-shadow: 0 10px 28px rgba(28, 25, 22, 0.1);
}
.site-header-logo img {
  max-height: 54px;
  width: auto;
}
.site-main-nav .navbar-nav .nav-link {
  position: relative;
  letter-spacing: 0.01em;
}
.site-main-nav .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  background: #8B0000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.site-main-nav .navbar-nav .nav-link:hover::after,
.site-main-nav .navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}
.btn-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8B0000 0%, #a52a2a 100%);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(139, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn-header-cta:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(139, 0, 0, 0.34);
  filter: brightness(1.05);
}
.header-cta-col {
  margin-left: 8px;
}
.nav-cta-mobile {
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid #ece6dc;
}
.nav-cta-mobile .btn-header-cta {
  width: 100%;
}
@media (max-width: 991px) {
  .site-main-nav {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .site-header-logo img {
    max-height: 46px;
  }
}
@media (max-width: 767px) {
  .site-topbar-tag {
    display: none;
  }
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-item:hover .nav-link,
.navbar .navbar-nav .nav-link.active {
  color: #5A0000 !important;
}
.navbar .navbar-nav .dropdown-menu li a {
  color: #8B0000 !important;
  font-weight: 700 !important;
}
.navbar .navbar-toggler-line {
  background-color: #8B0000 !important;
}

@media (min-width: 992px) {
  header .navbar > .container-fluid {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
  }
  header .navbar .col-auto.col-xxl-3,
  header .navbar .col-lg-2 {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  header .navbar .menu-order {
    flex: 1 1 auto;
    width: auto;
    max-width: none;
    margin-left: 52px;
  }
  header .navbar .navbar-collapse.justify-content-center {
    justify-content: flex-start !important;
  }
  header .navbar .navbar-nav {
    flex-wrap: nowrap;
    margin-left: 20px;
  }
  header .navbar .navbar-nav .nav-item {
    white-space: nowrap;
  }
  header .navbar .navbar-nav .nav-link {
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-size: 14px !important;
  }
}
@media (min-width: 1400px) {
  header .navbar .navbar-nav .nav-link {
    padding-left: 12px !important;
    padding-right: 12px !important;
    font-size: 15px !important;
  }
}

.hero-section-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  height: clamp(56px, 8vw, 96px);
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}
.hero-section-divider__svg {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 200%;
  height: 100%;
  animation: heroWaveSlide 11s linear infinite;
}
.hero-section-divider__svg--deep {
  opacity: 0.28;
  animation-duration: 18s;
  animation-direction: reverse;
}
.hero-section-divider__svg--back {
  opacity: 0.5;
  animation-duration: 14s;
  animation-direction: reverse;
}
.hero-section-divider__svg path {
  fill: #fff;
}
@keyframes heroWaveSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
#hero .swiper-pagination {
  z-index: 8;
  bottom: clamp(52px, 7vw, 88px) !important;
}
@media (prefers-reduced-motion: reduce) {
  .hero-section-divider__svg {
    animation: none;
    width: 100%;
  }
  .hero-section-divider__svg--deep,
  .hero-section-divider__svg--back {
    display: none;
  }
}

/* Latest Our Services — bento grid */
.svc-latest {
  background: linear-gradient(180deg, #f7f3ec 0%, #efe6d8 100%);
  color: #1c1916;
  padding: 88px 0;
}
.svc-latest-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.svc-latest-head .svc-kicker {
  display: inline-block;
  color: #8B0000;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.svc-latest-head h3 {
  color: #1c1916 !important;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em;
  margin: 0 0 12px !important;
  line-height: 1.15 !important;
}
.svc-latest-head p {
  color: #5c5852 !important;
  margin: 0 auto;
  max-width: 46rem;
  font-size: 1.05rem;
}
.svc-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.svc-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 320px;
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  background: #15201c;
  border: 1px solid rgba(232, 217, 184, 0.12);
  isolation: isolate;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.svc-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 217, 184, 0.35);
}
.svc-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(47, 143, 110, 0.4), transparent 52%),
    linear-gradient(165deg, #1a332c 0%, #0c1411 70%);
}
.svc-tile:nth-child(2)::before {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(139, 0, 0, 0.38), transparent 50%),
    linear-gradient(165deg, #2a1a1a 0%, #0c1411 72%);
}
.svc-tile:nth-child(3)::before {
  background:
    radial-gradient(ellipse at 10% 90%, rgba(232, 217, 184, 0.18), transparent 46%),
    linear-gradient(165deg, #1c2a28 0%, #0c1411 72%);
}
.svc-tile:nth-child(4)::before {
  background:
    radial-gradient(ellipse at 90% 80%, rgba(47, 143, 110, 0.32), transparent 50%),
    linear-gradient(165deg, #15242c 0%, #0c1411 72%);
}
.svc-tile:nth-child(5)::before {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(139, 0, 0, 0.28), transparent 48%),
    linear-gradient(165deg, #241820 0%, #0c1411 72%);
}
.svc-tile:nth-child(6)::before {
  background:
    radial-gradient(ellipse at 0% 50%, rgba(47, 143, 110, 0.28), transparent 50%),
    linear-gradient(165deg, #142018 0%, #0c1411 72%);
}
.svc-tile-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 0.6s ease;
}
.svc-tile-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 217, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 217, 184, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.svc-tile-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,20,17,.15) 0%, rgba(12,20,17,.88) 72%);
}
.svc-tile:hover .svc-tile-photo { transform: scale(1.1); }
.svc-tile-body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-tile .index {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #e8d9b8 !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}
.svc-tile h4 {
  font-size: 1.2rem !important;
  margin: 0 !important;
  color: #fff !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.svc-tile p {
  margin: 0 !important;
  color: #c9d5cf !important;
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.svc-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  color: #e8d9b8;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .svc-bento { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .svc-bento { grid-template-columns: 1fr; }
  .svc-latest { padding: 64px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .svc-tile,
  .svc-tile-photo { transition: none; }
}

.why-strip {
  background: #fff;
  border-top: 1px solid #e8e2d8;
  border-bottom: 1px solid #e8e2d8;
}
.why-strip-grid {
  align-items: stretch;
}
.why-strip .col {
  display: flex;
}
.why-card {
  width: 100%;
  min-height: 280px;
  padding: 36px 28px;
  text-align: center;
  background: #fff;
  border-right: 1px solid #eee7dc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: background 0.25s ease, transform 0.25s ease;
}
.why-strip .col:last-child .why-card {
  border-right: 0;
}
.why-card i {
  display: block;
  font-size: 42px;
  line-height: 1;
  color: #8B0000;
  margin-bottom: 22px;
}
.why-card h3 {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #1c1916 !important;
  margin: 0 0 10px !important;
  letter-spacing: -0.02em;
  line-height: 1.3 !important;
}
.why-card p {
  margin: 0 !important;
  color: #5c5852 !important;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
  max-width: 22em;
  opacity: 1 !important;
}
.why-card:hover {
  background: #f7f3ec;
}
@media (max-width: 1199px) {
  .why-card {
    border-right: 0;
    border-bottom: 1px solid #eee7dc;
  }
}

.why-choose {
  padding: 88px 0;
  background: linear-gradient(180deg, #fff 0%, #f7f3ec 48%, #efe6d8 100%);
  position: relative;
  overflow: hidden;
}
.why-choose::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(139, 0, 0, 0.06), transparent 42%),
    radial-gradient(circle at 90% 80%, rgba(47, 143, 110, 0.08), transparent 38%);
  pointer-events: none;
}
.why-choose .container {
  position: relative;
  z-index: 1;
}
.why-choose-head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}
.why-choose-kicker {
  display: inline-block;
  color: #8B0000;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.why-choose-head h2 {
  margin: 0 0 12px !important;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem) !important;
  font-weight: 700 !important;
  color: #1c1916 !important;
  letter-spacing: -0.03em;
  line-height: 1.15 !important;
}
.why-choose-head p {
  margin: 0 auto;
  max-width: 36rem;
  color: #5c5852 !important;
  font-size: 1.02rem;
  line-height: 1.6;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.why-choose-card {
  position: relative;
  background: #fff;
  border: 1px solid #ece6dc;
  border-radius: 20px;
  padding: 32px 26px 28px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(28, 25, 22, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.why-choose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8B0000, #c45c5c);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.why-choose-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 0, 0, 0.25);
  box-shadow: 0 20px 40px rgba(139, 0, 0, 0.1);
}
.why-choose-card:hover::before {
  opacity: 1;
}
.why-choose-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.12), rgba(139, 0, 0, 0.04));
  border: 1px solid rgba(139, 0, 0, 0.15);
  color: #8B0000;
  font-size: 1.55rem;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.why-choose-icon--gold {
  background: linear-gradient(135deg, rgba(180, 130, 0, 0.14), rgba(180, 130, 0, 0.04));
  border-color: rgba(180, 130, 0, 0.2);
  color: #9a7200;
}
.why-choose-icon--navy {
  background: linear-gradient(135deg, rgba(26, 47, 82, 0.12), rgba(26, 47, 82, 0.04));
  border-color: rgba(26, 47, 82, 0.18);
  color: #1a3d6e;
}
.why-choose-icon--green {
  background: linear-gradient(135deg, rgba(47, 143, 110, 0.14), rgba(47, 143, 110, 0.04));
  border-color: rgba(47, 143, 110, 0.2);
  color: #2f8f6e;
}
.why-choose-card:hover .why-choose-icon {
  transform: scale(1.08);
  background: #8B0000;
  border-color: #8B0000;
  color: #fff;
}
.why-choose-card:hover .why-choose-icon--gold {
  background: #9a7200;
  border-color: #9a7200;
}
.why-choose-card:hover .why-choose-icon--navy {
  background: #1a3d6e;
  border-color: #1a3d6e;
}
.why-choose-card:hover .why-choose-icon--green {
  background: #2f8f6e;
  border-color: #2f8f6e;
}
.why-choose-card h3 {
  margin: 0 0 10px !important;
  font-size: 1.12rem !important;
  font-weight: 700 !important;
  color: #1c1916 !important;
  letter-spacing: -0.02em;
  line-height: 1.3 !important;
}
.why-choose-card p {
  margin: 0 !important;
  font-size: 0.92rem !important;
  line-height: 1.58 !important;
  color: #5c5852 !important;
}
@media (max-width: 1199px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .why-choose {
    padding: 64px 0;
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .why-choose-card,
  .why-choose-icon {
    transition: none;
  }
}

.agile-process-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #0f1a2e 0%, #162544 42%, #1a2f52 100%);
  color: #fff;
}
.agile-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(139, 0, 0, 0.22), transparent 42%),
    radial-gradient(circle at 88% 72%, rgba(47, 143, 110, 0.18), transparent 38%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 36px 36px, 36px 36px;
  pointer-events: none;
}
.agile-process-section .container {
  position: relative;
  z-index: 1;
}
.agile-process-head {
  max-width: 680px;
  margin: 0 auto 48px;
}
.agile-kicker {
  display: inline-block;
  color: #e8b4b4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.agile-process-head h3 {
  color: #fff !important;
  margin-bottom: 14px !important;
}
.agile-process-head p {
  margin: 0 auto;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 1.02rem;
  line-height: 1.6;
}
.agile-timeline {
  position: relative;
  padding: 8px 0 12px;
}
.agile-track-line {
  display: none;
}
.agile-steps {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}
.agile-step {
  --step-accent: #2a5080;
  --step-accent-soft: rgba(42, 80, 128, 0.35);
  text-align: center;
  padding: 0 6px;
  transition: transform 0.25s ease;
}
.agile-step--red {
  --step-accent: #8B0000;
  --step-accent-soft: rgba(139, 0, 0, 0.35);
}
.agile-step--navy {
  --step-accent: #3d6a9e;
  --step-accent-soft: rgba(61, 106, 158, 0.35);
}
.agile-step-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 14px;
}
.agile-step-ring {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    conic-gradient(from 200deg, var(--step-accent) 0deg 200deg, transparent 200deg 360deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.agile-step-ring::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.28);
}
.agile-step-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  color: var(--step-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: color 0.25s ease, background 0.25s ease;
}
.agile-step-connector {
  display: block;
  width: 2px;
  height: 22px;
  margin-top: 10px;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0 4px,
    transparent 4px 8px
  );
}
.agile-step-label {
  display: inline-block;
  min-width: 96px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--step-accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px var(--step-accent-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.agile-step p {
  margin: 12px 0 0 !important;
  font-size: 0.82rem !important;
  line-height: 1.5 !important;
  color: rgba(255, 255, 255, 0.62) !important;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.35s ease, margin 0.3s ease;
}
.agile-step:hover,
.agile-step:focus-within {
  transform: translateY(-4px);
}
.agile-step:hover .agile-step-ring,
.agile-step:focus-within .agile-step-ring {
  transform: scale(1.06);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}
.agile-step:hover .agile-step-icon,
.agile-step:focus-within .agile-step-icon {
  background: var(--step-accent);
  color: #fff;
}
.agile-step:hover .agile-step-label,
.agile-step:focus-within .agile-step-label {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px var(--step-accent-soft);
}
.agile-step:hover p,
.agile-step:focus-within p {
  opacity: 1;
  max-height: 80px;
  margin-top: 14px !important;
}
@media (min-width: 1200px) {
  .agile-steps {
    gap: 10px;
  }
  .agile-step p {
    display: none;
  }
  .agile-step:hover p,
  .agile-step:focus-within p {
    display: block;
  }
}
@media (max-width: 1199px) {
  .agile-steps {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 4px 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
  }
  .agile-steps::-webkit-scrollbar {
    height: 6px;
  }
  .agile-steps::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 999px;
  }
  .agile-step {
    flex: 0 0 200px;
    scroll-snap-align: start;
  }
  .agile-step p {
    opacity: 1;
    max-height: none;
    margin-top: 12px !important;
  }
}
@media (max-width: 767px) {
  .agile-process-head {
    margin-bottom: 36px;
  }
  .agile-steps {
    flex-direction: column;
    overflow: visible;
    gap: 0;
    padding: 0;
  }
  .agile-step {
    flex: none;
    display: grid;
    grid-template-columns: 92px 1fr;
    grid-template-rows: auto auto;
    gap: 0 18px;
    text-align: left;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .agile-step:last-child {
    border-bottom: 0;
  }
  .agile-step-visual {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }
  .agile-step-connector {
    display: none;
  }
  .agile-step-label {
    align-self: end;
    margin-bottom: 6px;
  }
  .agile-step p {
    grid-column: 2;
    margin-top: 0 !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .agile-step,
  .agile-step-ring,
  .agile-step-icon,
  .agile-step-label,
  .agile-step p {
    transition: none;
  }
}

.client-marquee-section {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, #fff 0%, #f7f3ec 100%);
}
.client-marquee-head {
  text-align: center;
  margin-bottom: 36px;
}
.client-marquee-head span {
  display: block;
  color: #8B0000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.client-marquee-head h2 {
  margin: 0 !important;
  color: #1c1916 !important;
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em;
}
.client-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.client-marquee-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  padding: 8px 0 18px;
  animation: clientMarquee 42s linear infinite;
}
.client-marquee:hover .client-marquee-track {
  animation-play-state: paused;
}
.client-logo {
  flex: 0 0 190px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #eee7dc;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(28, 25, 22, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.client-logo:hover {
  transform: translateY(-4px);
  border-color: #8B0000;
  box-shadow: 0 14px 32px rgba(139, 0, 0, 0.12);
}
.client-logo img {
  max-width: 100%;
  max-height: 86px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@keyframes clientMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .client-marquee-track { animation: none; }
}

.feedback-section {
  position: relative;
  padding: clamp(72px, 8vw, 96px) 0;
  background: linear-gradient(165deg, #0f1a2e 0%, #162544 42%, #1a2f52 100%);
  color: #fff;
  overflow: hidden;
}
.feedback-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 14% 24%, rgba(139, 0, 0, 0.1), transparent 46%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
  pointer-events: none;
}
.feedback-section .container {
  position: relative;
  z-index: 1;
}
.feedback-kicker {
  display: inline-block;
  color: #c45c5c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.feedback-title {
  margin: 0 0 16px !important;
  font-size: clamp(1.65rem, 3vw, 2.25rem) !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: -0.03em;
  line-height: 1.15 !important;
}
.feedback-lead {
  margin: 0 0 28px !important;
  max-width: 26rem;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 1.02rem !important;
  line-height: 1.6 !important;
}
.feedback-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 1200px) {
  .feedback-nav {
    justify-content: flex-start;
  }
  .feedback-lead {
    margin-left: 0;
    margin-right: auto;
  }
}
.feedback-nav-btn {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  width: 46px !important;
  height: 46px !important;
  margin: 0 !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.feedback-nav-btn:hover {
  background: #8B0000 !important;
  border-color: #8B0000 !important;
  color: #fff !important;
  transform: translateY(-2px);
}
.feedback-slider-wrap {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .feedback-slider-wrap {
    max-width: none;
    margin: 0 0 0 auto;
  }
}
.feedback-slider {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}
.feedback-slider .swiper-slide {
  height: auto;
}
.feedback-card {
  position: relative;
  height: 100%;
  min-height: 260px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 26px 26px 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feedback-card::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(139, 0, 0, 0.07);
  font-family: Georgia, "Times New Roman", serif;
  pointer-events: none;
}
.feedback-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}
.feedback-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.feedback-mark {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #8B0000, #a83232);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(139, 0, 0, 0.28);
}
.feedback-card-top h4 {
  margin: 0 !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #1c1916 !important;
  line-height: 1.3 !important;
}
.feedback-card-top p {
  margin: 2px 0 0 !important;
  font-size: 0.8rem !important;
  color: #8B0000 !important;
  font-weight: 600;
}
.feedback-stars {
  margin-left: auto;
  background: linear-gradient(135deg, #f4e7b0, #edd98a);
  color: #1c1916;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(180, 130, 0, 0.18);
}
.feedback-stars i {
  color: #b8860b;
  margin-right: 4px;
}
.feedback-card > p {
  margin: 0 !important;
  color: #5c5852 !important;
  font-size: 0.95rem !important;
  line-height: 1.65 !important;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .feedback-lead {
    max-width: none;
  }
  .feedback-intro {
    margin-bottom: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .feedback-card,
  .feedback-nav-btn {
    transition: none;
  }
}

.projects-slider-section {
  background: #f7f3ec;
}
.projects-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.projects-kicker {
  display: block;
  color: #8B0000;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.projects-slider-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.projects-slider-prev,
.projects-slider-next {
  width: 46px;
  height: 46px;
  border: 1px solid #ddd5c8;
  border-radius: 50%;
  background: #fff;
  color: #8B0000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.projects-slider-prev:hover,
.projects-slider-next:hover {
  background: #8B0000;
  border-color: #8B0000;
  color: #fff;
}
.projects-slider-prev.swiper-button-disabled,
.projects-slider-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.projects-slider {
  overflow: hidden;
  padding-bottom: 8px;
}
.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 420px;
  background: #fff;
  border: 1px solid #eee7dc;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none !important;
  box-shadow: 0 12px 32px rgba(28, 25, 22, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.project-card:hover {
  transform: translateY(-6px);
  border-color: #8B0000;
  box-shadow: 0 18px 40px rgba(139, 0, 0, 0.12);
}
.project-card-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #ece6dc;
}
.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.35s ease;
}
.project-card:hover .project-card-image img {
  transform: scale(1.04);
}
.project-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  flex: 1;
}
.project-card-body h3 {
  margin: 0 !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #1c1916 !important;
  line-height: 1.35 !important;
}
.project-card-body p {
  margin: 0 !important;
  font-size: 0.92rem !important;
  color: #5c5852 !important;
  line-height: 1.55 !important;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .projects-slider-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .project-card {
    min-height: 380px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .project-card,
  .project-card-image img { transition: none; }
}

/* FAQ Section */
.faq-section {
  position: relative;
  padding: 88px 0;
  background: linear-gradient(180deg, #fff 0%, #f7f3ec 55%, #efe6d8 100%);
  overflow: hidden;
}
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(139, 0, 0, 0.06), transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(26, 47, 82, 0.06), transparent 38%);
  pointer-events: none;
}
.faq-section .container {
  position: relative;
  z-index: 1;
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.faq-kicker {
  display: inline-block;
  color: #8B0000;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.faq-intro h2 {
  margin: 0 0 14px !important;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem) !important;
  font-weight: 700 !important;
  color: #1c1916 !important;
  letter-spacing: -0.03em;
  line-height: 1.15 !important;
}
.faq-intro > p {
  margin: 0 0 24px !important;
  max-width: 22rem;
  color: #5c5852 !important;
  font-size: 1.02rem;
  line-height: 1.6;
}
.faq-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.faq-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.faq-contact-btn--primary {
  background: #8B0000;
  border: 1px solid #8B0000;
  color: #fff;
}
.faq-contact-btn--primary:hover {
  background: #6d0000;
  border-color: #6d0000;
  color: #fff;
  transform: translateY(-1px);
}
.faq-contact-btn--outline {
  background: #fff;
  border: 1px solid #d8cfc0;
  color: #1c1916;
}
.faq-contact-btn--outline:hover {
  border-color: #8B0000;
  color: #8B0000;
  transform: translateY(-1px);
}
.faq-contact-note {
  margin: 0 !important;
  font-size: 0.9rem !important;
  color: #5c5852 !important;
}
.faq-contact-note a {
  color: #8B0000;
  font-weight: 700;
  text-decoration: none;
}
.faq-contact-note a:hover {
  text-decoration: underline;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-accordion .faq-item {
  border: 1px solid #e8dfd2;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(28, 25, 22, 0.05);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-accordion .faq-item:has(.accordion-collapse.show),
.faq-accordion .faq-item.active-accordion {
  border-color: rgba(139, 0, 0, 0.28);
  box-shadow: 0 14px 32px rgba(139, 0, 0, 0.08);
}
.faq-accordion .accordion-header {
  margin: 0;
}
.faq-accordion .faq-trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  box-shadow: none !important;
  text-align: left;
  color: #1c1916;
}
.faq-accordion .faq-trigger::after {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  margin-left: auto;
  border-radius: 50%;
  background: #f7f3ec;
  background-image: none;
  transform: none !important;
  content: "";
  mask: none;
  -webkit-mask: none;
  position: relative;
}
.faq-accordion .faq-trigger.collapsed::after {
  background: #f7f3ec url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%231c1916' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.faq-accordion .faq-trigger:not(.collapsed)::after {
  background: #8B0000 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 10l4-4 4 4' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.faq-trigger-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(139, 0, 0, 0.04));
  border: 1px solid rgba(139, 0, 0, 0.14);
  color: #8B0000;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.faq-accordion .faq-item:has(.accordion-collapse.show) .faq-trigger-num,
.faq-accordion .faq-item.active-accordion .faq-trigger-num {
  background: #8B0000;
  border-color: #8B0000;
  color: #fff;
}
.faq-trigger-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.faq-accordion .faq-answer {
  padding: 0 20px 18px 70px;
}
.faq-accordion .faq-answer p {
  margin: 0 !important;
  color: #5c5852 !important;
  font-size: 0.96rem !important;
  line-height: 1.65 !important;
}
@media (max-width: 991px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-intro > p {
    max-width: none;
  }
}
@media (max-width: 575px) {
  .faq-section {
    padding: 64px 0;
  }
  .faq-accordion .faq-trigger {
    padding: 16px 14px;
    gap: 12px;
  }
  .faq-accordion .faq-answer {
    padding: 0 14px 16px 14px;
  }
  .faq-trigger-text {
    font-size: 0.94rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .faq-contact-btn,
  .faq-accordion .faq-item {
    transition: none;
  }
}

/* Tech Stack Section */
.tech-stack-section {
  position: relative;
  padding: clamp(72px, 9vw, 100px) 0;
  background:
    linear-gradient(180deg, #fff 0%, #f7f3ec 38%, #efe6d8 100%);
  overflow: hidden;
}
.tech-stack-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.tech-stack-bg__row {
  position: absolute;
  left: 0;
  right: 0;
  overflow: hidden;
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.tech-stack-bg__row--1 {
  top: 6%;
}
.tech-stack-bg__row--2 {
  top: 42%;
  opacity: 0.45;
}
.tech-stack-bg__row--3 {
  bottom: 8%;
  opacity: 0.4;
}
.tech-stack-bg__track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  width: max-content;
  padding: 10px 0;
  animation: techBgMarquee 52s linear infinite;
}
.tech-stack-bg__track--reverse {
  animation-direction: reverse;
  animation-duration: 58s;
}
.tech-stack-bg__row--3 .tech-stack-bg__track {
  animation-duration: 64s;
}
.tech-stack-bg__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(52px, 6vw, 72px);
  height: clamp(52px, 6vw, 72px);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(139, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(28, 25, 22, 0.06);
  padding: 10px;
  filter: grayscale(1);
  opacity: 0.55;
}
.tech-stack-bg__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.tech-stack-bg__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 70% at 50% 45%, rgba(247, 243, 236, 0.92) 0%, rgba(247, 243, 236, 0.55) 45%, rgba(247, 243, 236, 0.15) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.2) 18%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.2) 82%, rgba(239, 230, 216, 0.85) 100%);
}
@keyframes techBgMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.tech-stack-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(139, 0, 0, 0.04), transparent 55%),
    linear-gradient(rgba(139, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 0, 0, 0.03) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  pointer-events: none;
}
.tech-stack-glow {
  position: absolute;
  width: clamp(220px, 28vw, 420px);
  height: clamp(220px, 28vw, 420px);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}
.tech-stack-glow--left {
  top: 8%;
  left: -8%;
  background: rgba(139, 0, 0, 0.14);
}
.tech-stack-glow--right {
  bottom: 6%;
  right: -6%;
  background: rgba(26, 47, 82, 0.12);
}
.tech-stack-section .container {
  position: relative;
  z-index: 2;
}
.tech-stack-container {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding-left: clamp(16px, 3vw, 48px);
  padding-right: clamp(16px, 3vw, 48px);
}
@media (min-width: 1400px) {
  .tech-stack-container {
    padding-left: clamp(24px, 4vw, 64px);
    padding-right: clamp(24px, 4vw, 64px);
  }
}
.tech-stack-head {
  max-width: 560px;
  margin: 0 auto 32px;
  text-align: center;
}
.tech-stack-kicker {
  display: block;
  color: #8B0000;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.tech-stack-head h2 {
  margin: 0 0 10px !important;
  font-size: clamp(1.6rem, 3vw, 2.15rem) !important;
  font-weight: 700 !important;
  color: #1c1916 !important;
  letter-spacing: -0.03em;
  line-height: 1.2 !important;
}
.tech-stack-head p {
  margin: 0 auto;
  max-width: 32rem;
  color: #5c5852 !important;
  font-size: 1rem;
  line-height: 1.55;
}
.tech-stack-panel {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: clamp(20px, 2.5vw, 32px);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 50px rgba(28, 25, 22, 0.08);
  backdrop-filter: blur(8px);
}
.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: #ece6dc;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ece6dc;
}
@media (min-width: 1200px) {
  .tech-stack-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}
@media (min-width: 1600px) {
  .tech-stack-grid {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}
.tech-item {
  position: relative;
  min-height: 120px;
  background: #fff;
  cursor: default;
  outline: none;
}
.tech-item__front,
.tech-item__detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 12px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.tech-item__front {
  position: relative;
  z-index: 1;
  gap: 10px;
  min-height: 120px;
}
.tech-item__detail {
  position: absolute;
  inset: 0;
  z-index: 2;
  gap: 6px;
  padding: 14px 12px;
  background: linear-gradient(160deg, #162544 0%, #1a2f52 100%);
  color: #fff;
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}
.tech-item__detail p {
  margin: 0 !important;
  font-size: 0.72rem !important;
  line-height: 1.45 !important;
  color: rgba(255, 255, 255, 0.82) !important;
}
.tech-item:hover .tech-item__front,
.tech-item:focus-visible .tech-item__front {
  opacity: 0;
  transform: scale(0.96);
}
.tech-item:hover .tech-item__detail,
.tech-item:focus-visible .tech-item__detail {
  opacity: 1;
  transform: scale(1);
}
.tech-item:focus-visible {
  box-shadow: inset 0 0 0 2px #8B0000;
}
.tech-item__icon {
  width: auto;
  height: 44px;
  max-width: 62px;
  object-fit: contain;
}
.tech-item__icon--wide {
  max-width: 80px;
  height: 36px;
}
.tech-item__icon-bi {
  font-size: 2.35rem;
  line-height: 1;
  color: #8B0000;
}
.tech-item__name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4a4641;
  line-height: 1.3;
}
.tech-item__tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffb4b4;
  margin-bottom: 2px;
}
.tech-item__title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.2;
}
@media (max-width: 1199px) {
  .tech-stack-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .tech-stack-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .tech-stack-section {
    padding: 64px 0;
  }
  .tech-stack-panel {
    padding: 16px;
    border-radius: 16px;
  }
  .tech-stack-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .tech-item {
    min-height: 110px;
  }
  .tech-item__front {
    min-height: 110px;
    padding: 14px 10px;
  }
  .tech-item__detail {
    padding: 12px 10px;
  }
  .tech-item__detail p {
    font-size: 0.66rem !important;
  }
  .tech-item__icon {
    height: 36px;
    max-width: 54px;
  }
  .tech-item__icon--wide {
    max-width: 68px;
    height: 32px;
  }
  .tech-item__icon-bi {
    font-size: 2rem;
  }
  .tech-item__name {
    font-size: 0.65rem;
  }
}
@media (max-width: 479px) {
  .tech-stack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (prefers-reduced-motion: reduce) {
  .tech-stack-bg__track {
    animation: none;
  }
  .tech-item__front,
  .tech-item__detail {
    transition: opacity 0.15s ease;
  }
  .tech-item:hover .tech-item__front,
  .tech-item:focus-visible .tech-item__front {
    opacity: 0;
    transform: none;
  }
  .tech-item:hover .tech-item__detail,
  .tech-item:focus-visible .tech-item__detail {
    opacity: 1;
    transform: none;
  }
}
