:root {
  --navy: #1b2d4f;
  --navy-deep: #0f1a2e;
  --navy-mid: #243b5c;
  --coral: #d4726a;
  --coral-light: #e8928b;
  --coral-muted: rgba(212, 114, 106, 0.1333333333);
  --cream: #f6f2ed;
  --cream-dark: #ede7df;
  --warm-grey: #9a9189;
  --text-primary: #1b2d4f;
  --text-secondary: #5c6a7a;
  --text-light: #8a9aad;
  --white: #ffffff;
  --border: #d6cfc6;
  --serif: Playfair Display, Georgia, serif;
  --sans: Plus Jakarta Sans, system-ui, sans-serif;
  --mono: JetBrains Mono, SF Mono, monospace;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.2s;
}

.reveal-delay-2 {
  transition-delay: 0.4s;
}

.reveal-delay-3 {
  transition-delay: 0.6s;
}

.reveal-delay-4 {
  transition-delay: 0.8s;
}

.testimonial-card.reveal {
  transform: none;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes heroScrollPulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.7;
  }
}
@keyframes heroScrollLine {
  0% {
    transform: scaleY(0.6);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  100% {
    transform: scaleY(0.6);
    transform-origin: top;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: #1b2d4f;
  background: #f6f2ed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b2d4f;
}
.section-title em {
  font-style: normal;
  color: #d4726a;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d4726a;
  margin-bottom: 14px;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: #d4726a;
}

.section {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 767px) {
  .section {
    padding: 80px 0;
  }
}

.section-sm {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .section-sm {
    padding: 28px 0;
  }
}
@media (max-width: 767px) {
  #work.section-sm {
    padding-bottom: 80px !important;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 64px);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid rgba(27, 45, 79, 0.1);
}
.nav.scrolled {
  background: rgba(246, 242, 237, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
}
.nav.mega-open {
  background: rgba(246, 242, 237, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  color: #1b2d4f;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span {
  color: #d4726a;
  font-family: inherit;
  font-weight: inherit;
  font-style: normal;
}
.nav-logo:hover {
  color: inherit;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a:not(.nav-cta) {
  font-size: 0.88rem;
  font-weight: 600;
  color: #5c6a7a;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:not(.nav-cta):hover {
  color: #1b2d4f;
}
.page-id-12 .nav:not(.scrolled):not(.mega-open) .nav-logo,
.page-id-45 .nav:not(.scrolled):not(.mega-open) .nav-logo {
  color: #ffffff;
}
.page-id-12 .nav:not(.scrolled):not(.mega-open) .nav-links a:not(.nav-cta):hover,
.page-id-45 .nav:not(.scrolled):not(.mega-open) .nav-links a:not(.nav-cta):hover {
  color: #e8928b;
}


@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
}

.nav-link-trigger {
  cursor: pointer;
  position: relative;
}
.nav-link-trigger > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-link-trigger > a svg {
  width: 10px;
  height: 10px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link-trigger > a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #d4726a;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link-trigger.active > a svg {
  transform: rotate(180deg);
}
.nav-link-trigger.active > a::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #d4726a;
  color: #ffffff !important;
  border-radius: 8px;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-cta svg {
  opacity: 0.7;
}
.nav-cta:hover {
  background: #c4635b;
  box-shadow: 0 4px 16px rgba(212, 114, 106, 0.25);
}

.nav-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid #d6cfc6;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-mobile-toggle svg {
  width: 20px;
  height: 20px;
  color: #1b2d4f;
}
@media (max-width: 1024px) {
  .nav-mobile-toggle {
    display: flex;
  }
}

.page-id-12 .nav:not(.scrolled):not(.mega-open) .nav-mobile-toggle {
  border-color: rgba(255, 255, 255, 0.4);
}
.page-id-12 .nav:not(.scrolled):not(.mega-open) .nav-mobile-toggle svg {
  color: #ffffff;
}
.page-id-12 .nav.scrolled .nav-mobile-toggle {
  border-color: #d6cfc6;
}
.page-id-12 .nav.scrolled .nav-mobile-toggle svg {
  color: #1b2d4f;
}

.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mob-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mob-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #0f1a2e;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mob-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.mob-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(24px, 4vw, 64px);
  flex-shrink: 0;
}

.mob-drawer-close {
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.2s;
}
.mob-drawer-close:hover {
  border-color: #e8928b;
  color: #e8928b;
}
.mob-drawer-close svg {
  width: 18px;
  height: 18px;
}

.mob-drawer .nav-logo {
  color: #ffffff;
}
.mob-drawer .nav-logo span {
  color: #e8928b;
  font-family: inherit;
  font-weight: inherit;
  font-style: normal;
}

.mob-drawer-nav {
  padding: 24px 0;
  flex: 1;
}

.mob-nav-item {
  display: block;
  padding: 16px 32px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.25s, padding-left 0.25s;
  letter-spacing: -0.01em;
}
.mob-nav-item:hover {
  color: #ffffff;
  padding-left: 40px;
}

.mob-nav-services {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  text-align: left;
  transition: color 0.25s;
  letter-spacing: -0.01em;
}
.mob-nav-services:hover {
  color: #ffffff;
}
.mob-nav-services svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s;
}
.mob-nav-services.open {
  color: #e8928b;
}
.mob-nav-services.open svg {
  transform: rotate(180deg);
  color: #e8928b;
}

.mob-nav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-nav-sub-item {
  display: block;
  padding: 10px 32px 10px 48px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.mob-nav-sub-item:hover {
  color: #e8928b;
}

.mob-drawer-cta {
  padding: 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.mob-drawer-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: #d4726a;
  color: #ffffff;
  border-radius: 8px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mob-drawer-cta a svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}
.mob-drawer-cta a:hover {
  background: #c4635b;
}

.mega-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mega-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.mega-overlay.open .mega-overlay-bg {
  transform: scaleY(1);
}
.mega-overlay.open .mega-overlay-glow {
  opacity: 1;
}
.mega-overlay.open .mega-overlay-glow-2 {
  opacity: 1;
}
.mega-overlay.open .mega-header {
  opacity: 1;
  transform: translateY(0);
}
.mega-overlay.open .mega-detail {
  opacity: 1;
}
.mega-overlay.open .mega-nav-item {
  opacity: 1;
  transform: translateX(0);
}
.mega-overlay.open .mega-footer {
  opacity: 1;
}
.mega-overlay.entering .mega-nav-item:nth-child(1) {
  transition-delay: 0.2s;
}
.mega-overlay.entering .mega-nav-item:nth-child(2) {
  transition-delay: 0.25s;
}
.mega-overlay.entering .mega-nav-item:nth-child(3) {
  transition-delay: 0.3s;
}
.mega-overlay.entering .mega-nav-item:nth-child(4) {
  transition-delay: 0.35s;
}
.mega-overlay.entering .mega-nav-item:nth-child(5) {
  transition-delay: 0.4s;
}
.mega-overlay.entering .mega-nav-item:nth-child(6) {
  transition-delay: 0.45s;
}
.mega-overlay.entering .mega-nav-item:nth-child(7) {
  transition-delay: 0.5s;
}
.mega-overlay.entering .mega-nav-item:nth-child(8) {
  transition-delay: 0.55s;
}
@media (max-width: 767px) {
  .mega-overlay {
    display: none;
  }
}

.mega-overlay-bg {
  position: absolute;
  inset: 0;
  background: #0f1a2e;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

.mega-overlay-glow {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 114, 106, 0.12) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease 0.3s;
}

.mega-overlay-glow-2 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(36, 59, 92, 0.3) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease 0.4s;
}

.mega-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(32px, 5vw, 80px);
  z-index: 2;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.mega-logo {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.mega-logo span {
  color: #e8928b;
}

.mega-close {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mega-close:hover {
  border-color: #d4726a;
  color: #d4726a;
  transform: rotate(90deg);
}
.mega-close svg {
  width: 18px;
  height: 18px;
}

.mega-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 96px - 60px);
  height: calc(100vh - 96px - 60px);
  padding: 0 clamp(32px, 5vw, 80px);
  overflow: visible;
}
.mega-content::before {
  content: "";
  position: absolute;
  top: -96px;
  bottom: -60px;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 0;
}

.mega-nav-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding-right: clamp(24px, 4vw, 60px);
  overflow-y: auto;
}

.mega-nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: clamp(6px, 1.1vh, 14px) 0;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: color 0s, opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.mega-nav-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.mega-nav-item:hover, .mega-nav-item.active {
  color: #e8928b;
}

.mega-nav-num {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #d4726a;
  opacity: 0;
  transition: opacity 0.3s ease;
  min-width: 24px;
}
.mega-nav-item:hover .mega-nav-num, .mega-nav-item.active .mega-nav-num {
  opacity: 1;
}

.mega-nav-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mega-nav-item:hover .mega-nav-title {
  transform: translateX(8px);
}

.mega-nav-arrow {
  margin-left: auto;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mega-nav-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #e8928b;
}
.mega-nav-item:hover .mega-nav-arrow, .mega-nav-item.active .mega-nav-arrow {
  opacity: 1;
  transform: translateX(0);
}

.mega-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(32px, 4vw, 60px);
  padding-right: 16px;
  opacity: 0;
  transition: opacity 0.5s ease 0.35s;
  overflow: hidden;
  position: relative;
}

.mega-detail-canvas {
  position: absolute;
  top: 50%;
  left: calc(50% + 55px);
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  opacity: 0.8;
  pointer-events: none;
}

.mega-detail-inner {
  position: relative;
}

.mega-detail-slide {
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
.mega-detail-slide.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}
.mega-overlay.open .mega-detail-slide.active {
  pointer-events: auto;
}

.mega-detail-tag {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #d4726a;
  margin-bottom: 16px;
}

.mega-detail-desc {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 410px;
}

.mega-detail-techs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.mega-detail-tech {
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(212, 114, 106, 0.25);
  font-size: 0.68rem;
  font-weight: 600;
  color: #e8928b;
  letter-spacing: 0.02em;
}

.mega-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e8928b;
  text-decoration: none;
  transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s;
}
.mega-detail-link:hover {
  color: #ffffff;
  gap: 14px;
}
.mega-detail-link svg {
  width: 16px;
  height: 16px;
}

.mega-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px clamp(32px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transition: opacity 0.4s ease 0.5s;
}

.mega-footer-links {
  display: flex;
  gap: 32px;
}

.mega-footer-link {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.mega-footer-link:hover {
  color: #ffffff;
}

.mega-footer-email {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.mega-footer-email:hover {
  color: #e8928b;
}

.footer {
  background: #0f1a2e;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0 36px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .footer-top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

.footer-logo {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #ffffff;
  text-decoration: none;
}
.footer-logo span {
  color: #e8928b;
  font-family: inherit;
  font-weight: inherit;
  font-style: normal;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
@media (max-width: 767px) {
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #d4726a;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary:hover {
  background: #c4625a;
  box-shadow: 0 8px 32px rgba(212, 114, 106, 0.3);
}
.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}
.btn-primary:hover svg {
  transform: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  color: #1b2d4f;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1.5px solid #d6cfc6;
  border-radius: 8px;
  transition: all 0.25s;
}
.btn-ghost svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s;
}
.btn-ghost:hover {
  border-color: #1b2d4f;
  background: #1b2d4f;
  color: #ffffff;
}
.btn-ghost:hover svg {
  transform: translateX(3px);
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1b2d4f;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
}
.btn-text-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #1b2d4f;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-text-link:hover {
  color: #d4726a;
}
.btn-text-link:hover::after {
  width: 100%;
  background: #d4726a;
}
.btn-text-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}
.btn-text-link:hover svg {
  transform: translateX(3px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.25s;
}
.btn-outline-light svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}
.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}
.btn-outline-light:hover svg {
  transform: none;
}

.hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero--home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
  contain: layout style;
}
@media (max-width: 767px) {
  .hero {
    padding: 160px 0 0;
  }
  .hero--home {
    padding-top: 160px;
    padding-bottom: 80px;
    min-height: auto;
  }
}

/* Prevent hero CLS from font loading */
.hero--home h1 {
  font-size-adjust: from-font;
}
.hero--home .hero-desc {
  font-size-adjust: from-font;
}
.hero--home::before {
  top: 10%;
  right: -5%;
  width: 60%;
  background: radial-gradient(ellipse at center, rgba(212, 114, 106, 0.06) 0%, rgba(212, 114, 106, 0.02) 40%, transparent 70%);
}
.hero--home h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 28px;
}
.hero--home .hero-desc {
  line-height: 1.7;
  max-width: 480px;
}
.hero--home .hero-actions {
  gap: 24px;
}
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(212, 114, 106, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero > .container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #1b2d4f;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: #d4726a;
}
@media (max-width: 767px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  contain: layout style;
}
.hero-grid > * {
  min-width: 0;
}
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d4726a;
  margin-bottom: 28px;
  background: rgba(212, 114, 106, 0.1333333333);
  padding: 8px 18px 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(212, 114, 106, 0.12);
}
.hero-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4726a;
  flex-shrink: 0;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #5c6a7a;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-desc strong {
  color: #1b2d4f;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  color: #8a9aad;
}

.hero-social-proof-avatars {
  display: flex;
}

.hero-social-proof-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #f6f2ed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: #ffffff;
  margin-left: -6px;
}
.hero-social-proof-avatar:first-child {
  margin-left: 0;
}

.hero-social-proof-text {
  line-height: 1.4;
}
.hero-social-proof-text strong {
  color: #1b2d4f;
  font-weight: 700;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #8a9aad;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.6;
  animation: heroScrollPulse 2s ease-in-out infinite;
  z-index: 1;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.25s, color 0.25s;
}
.hero-scroll:hover {
  opacity: 1;
  color: #d4726a;
  animation: none;
}
@media (max-width: 767px) {
  .hero-scroll {
    display: none;
  }
}

.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, #8a9aad, transparent);
  animation: heroScrollLine 2s ease-in-out infinite;
  transition: background 0.25s;
}
.hero-scroll:hover .hero-scroll-line {
  background: linear-gradient(to bottom, #d4726a, transparent);
  animation: none;
}

.hero-dot-cluster {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 410px;
  justify-self: end;
}
.hero-dot-cluster::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  height: 65%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 114, 106, 0.1) 0%, rgba(212, 114, 106, 0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-dot-cluster canvas {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .hero-dot-cluster {
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .hero-dot-cluster {
    display: none;
  }
}

.trust-strip {
  border-top: 1px solid #d6cfc6;
  border-bottom: 1px solid #d6cfc6;
  padding: 0;
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .trust-inner {
    grid-template-columns: 1fr;
  }
}

.trust-item {
  padding: 36px 40px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trust-item:not(:last-child) {
  border-right: 1px solid #d6cfc6;
}
@media (max-width: 767px) {
  .trust-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #d6cfc6;
  }
}
.trust-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1b2d4f;
  margin-bottom: 4px;
}
.trust-item p {
  font-size: 0.82rem;
  color: #5c6a7a;
  line-height: 1.5;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #1b2d4f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg {
  width: 18px;
  height: 18px;
  color: #e8928b;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
}
.services-header p {
  max-width: 410px;
  font-size: 1rem;
  color: #5c6a7a;
  line-height: 1.6;
  text-align: right;
  margin-left: auto;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .services-header p {
    text-align: left;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #d6cfc6;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #ffffff;
  padding: 40px 32px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .service-card {
    padding: 28px 24px;
  }
}
@media (hover: hover) {
  .service-card:hover {
    background: #1b2d4f;
    z-index: 2;
  }
  .service-card:hover h3 {
    color: #d4726a;
  }
  .service-card:hover .service-icon {
    background: #243b5c;
  }
  .service-card:hover .service-icon svg {
    color: #d4726a;
  }
  .service-card:hover .service-link {
    color: #e8928b !important;
  }
  .service-card:hover .service-link svg {
    transform: translateX(4px);
  }
}
.service-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  color: #1b2d4f;
  margin-bottom: 12px;
  transition: color 0.35s;
}
.service-card p {
  font-size: 0.88rem;
  color: #5c6a7a;
  line-height: 1.6;
  transition: color 0.35s;
  flex: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f6f2ed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.35s;
}
.service-icon svg {
  width: 22px;
  height: 22px;
  color: #1b2d4f;
  transition: color 0.35s;
}

.service-link {
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d4726a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.35s;
  margin-top: auto;
}
.service-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.services-also {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.services-also-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8a9aad;
}

.services-also-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid #d6cfc6;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #5c6a7a;
  background: #ffffff;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.services-also-tag:hover {
  border-color: #d4726a;
  color: #d4726a;
  background: rgba(212, 114, 106, 0.1333333333);
}

.standard-section {
  background: #0f1a2e;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .standard-section {
    padding: 80px 0;
  }
}
.standard-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 114, 106, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.standard-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.standard-header .section-title {
  color: #ffffff;
}
@media (max-width: 1024px) {
  .standard-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.standard-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 440px;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 40px;
  background: none;
  border-radius: 0;
  overflow: visible;
}
@media (max-width: 1024px) {
  .standard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .standard-grid {
    grid-template-columns: 1fr;
  }
}

.standard-card {
  background: none;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .standard-card {
    padding: 24px 0;
  }
}
.standard-card h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 12px;
}
.standard-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 14px;
}

.standard-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 114, 106, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.standard-card-icon svg {
  width: 20px;
  height: 20px;
  color: #e8928b;
}

.standard-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}
.standard-check svg {
  width: 14px;
  height: 14px;
  color: #e8928b;
  flex-shrink: 0;
}

.guarantee-section {
  background: #ffffff;
  border-top: 1px solid #d6cfc6;
  border-bottom: 1px solid #d6cfc6;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 1024px) {
  .guarantee-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.guarantee-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 114, 106, 0.1333333333);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  color: #d4726a;
  flex-shrink: 0;
}

.guarantee-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
}
.guarantee-item:not(:last-child) {
  border-bottom: 1px solid #d6cfc6;
}
.guarantee-item h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  color: #1b2d4f;
  margin-bottom: 6px;
}
.guarantee-item p {
  font-size: 0.9rem;
  color: #5c6a7a;
  line-height: 1.6;
}

.guarantee-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-code {
  font-family: "SF Mono", "Fira Code", monospace;
  font-size: 0.72rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
}
.guarantee-code .highlight {
  color: #e8928b;
}
.guarantee-code .blue {
  color: #6ab0de;
}
.guarantee-code .green {
  color: #7ec699;
}
.guarantee-code .code-line {  padding: 0 0 0 0;}.guarantee-code .string {  color: #a8d4a2;}.guarantee-code .number {  color: #d4a276;}.guarantee-code .comment {
  color: rgba(255, 255, 255, 0.25);
}

.agencies-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .agencies-header {
    grid-template-columns: 1fr;
  }
  .agencies-header .btn-ghost {
    justify-self: start;
  }
}

.agencies-desc {
  font-size: 1rem;
  color: #5c6a7a;
  line-height: 1.6;
  max-width: 400px;
}

.agencies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .agencies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .agencies-grid {
    grid-template-columns: 1fr;
  }
}

.agency-card {
  background: #ffffff;
  border: 1px solid #d6cfc6;
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}
@media (max-width: 767px) {
  .agency-card {
    padding: 28px 24px;
  }
}
.agency-card h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  color: #1b2d4f;
  margin-bottom: 10px;
}
.agency-card p {
  font-size: 0.85rem;
  color: #5c6a7a;
  line-height: 1.6;
}

.agency-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(212, 114, 106, 0.1333333333);
  color: #d4726a;
}

.agency-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #1b2d4f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.agency-card-icon svg {
  width: 18px;
  height: 18px;
  color: #e8928b;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .projects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .projects-grid .project-card:first-child {
    grid-row: auto;
  }
}

.project-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #ede7df;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.project-card:hover .project-img {
  transform: scale(1.05);
}
.project-card:hover .project-overlay {
  transform: translateY(0);
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  background: linear-gradient(to top, rgba(15, 26, 46, 0.9), transparent);
  transform: translateY(100%);

  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 767px) {
  .project-overlay {
    transform: translateY(0);
    opacity: 1;
  }
}
.project-overlay h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  color: #ffffff;
}

.project-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  backdrop-filter: blur(10px);
}

.testimonials-section {
  background: #ffffff;
  border-top: 1px solid #d6cfc6;
  border-bottom: 1px solid #d6cfc6;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .testimonials-section {
    padding: 80px 0;
  }
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #d6cfc6;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    scroll-padding: 0;
    background: none;
    border-radius: 0;
  }
  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }
  .testimonials-grid {
    scroll-behavior: smooth;
  }
}

.testimonial-card {
  background: #ffffff;
  padding: 48px 40px;
}
@media (max-width: 767px) {
  .testimonial-card {
    padding: 32px 24px;
    width: 85vw;
    min-width: 0;
    max-width: 85vw;
    flex-shrink: 0;
    scroll-snap-align: start;
    border-radius: 16px;
    border: 1px solid #e8e2da;
    overflow: hidden;
  }
}

.testimonial-quote {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5rem;
  line-height: 0.5;
  color: rgba(212, 114, 106, 0.1333333333);
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #1b2d4f;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.testimonial-stars svg {
  width: 14px;
  height: 14px;
  color: #d4726a;
}

.testimonial-quote-mark {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4rem;
  line-height: 0.5;
  color: #d4726a;
  opacity: 0.2;
  margin-bottom: 14px;
  display: block;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1b2d4f;
  line-height: 1.2;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-author-info h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1b2d4f;
}
.testimonial-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .testimonial-dots {
    display: flex;
  }
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6cfc6;
  transition: background 0.3s, transform 0.3s;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.testimonial-dot.active {
  background: #d4726a;
  transform: scale(1.2);
}

.testimonial-author-info p {
  font-size: 0.72rem;
  color: #8a9aad;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1b2d4f;
}

.testimonial-role {
  font-size: 0.72rem;
  color: #8a9aad;
  margin-top: 2px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #d6cfc6;
  margin-top: auto;
}

.testimonials-grid--cards {
  gap: 20px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
.testimonials-grid--cards .testimonial-card {
  background: #f6f2ed;
  border: 1px solid #d6cfc6;
  border-radius: 14px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 767px) {
  .testimonials-grid--cards .testimonial-card {
    padding: 28px 24px 24px;
  }
}
.testimonials-grid--cards .testimonial-quote-mark {
  font-size: 3.5rem;
  line-height: 1;
  opacity: 0.25;
  margin-bottom: 8px;
  pointer-events: none;
}
.testimonials-grid--cards .testimonial-quote {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #1b2d4f;
  font-style: italic;
  margin-bottom: 28px;
  flex: 1;
}
.testimonials-grid--cards .testimonial-avatar {
  background: #ede7df;
  color: #d4726a;
}
.testimonials-grid--cards .testimonial-role {
  font-size: 0.7rem;
  margin-top: 1px;
}

.tech-section {
  padding: 64px 0;
  overflow: hidden;
}

.tech-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8a9aad;
  margin-bottom: 32px;
}

.marquee-wrap {
  overflow: hidden;
  position: relative;
}
.marquee-wrap::before, .marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f6f2ed, transparent);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f6f2ed, transparent);
}

.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  color: #8a9aad;
  white-space: nowrap;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.marquee-track span:hover {
  opacity: 1;
}
.marquee-track .sep {
  font-size: 1.6rem;
  color: rgba(212, 114, 106, 0.1333333333);
  opacity: 1;
}





/* ─── Disable scroll-jacking on service pages ─── */
.scroll-xp {
  height: auto !important;
}
.scroll-xp-sticky {
  position: relative;
  height: auto;
  padding: 80px 0 60px;
}

/* ─── Sticky CTA Bar ─── */
.sticky-cta-bar {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 40px));
  z-index: 999;
  background: #0f1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  max-width: 640px;
  width: calc(100% - 40px);
}
.sticky-cta-bar.visible {
  transform: translateX(-50%) translateY(0);
}
.sticky-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-cta-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}
.sticky-cta-text svg {
  width: 18px;
  height: 18px;
  color: #e8928b;
  flex-shrink: 0;
}
.sticky-cta-text strong {
  color: #ffffff;
  font-weight: 700;
}
.sticky-cta-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: #d4726a;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, box-shadow 0.25s;
  flex-shrink: 0;
}
.sticky-cta-btn:hover {
  background: #c4625a;
  box-shadow: 0 4px 16px rgba(212, 114, 106, 0.3);
}
.sticky-cta-btn svg {
  transition: transform 0.3s;
}
.sticky-cta-btn:hover svg {
  transform: none;
}
@media (max-width: 767px) {
  .sticky-cta-bar {
    bottom: 8px;
  }
  .sticky-cta-inner {
    flex-direction: row;
    gap: 12px;
    padding: 10px 14px;
    text-align: left;
  }
  .sticky-cta-text {
    justify-content: flex-start;
    font-size: 0.68rem;
  }
  .sticky-cta-btn {
  margin-left: auto;
    width: auto;
    padding: 8px 16px;
    font-size: 0.72rem;
    flex-shrink: 0;
  }
}


.sticky-cta-fitcall {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s;
  flex-shrink: 0;
}
.sticky-cta-fitcall:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}
@media (max-width: 767px) {
  .sticky-cta-fitcall {
    display: none;
  }
}

/* ─── Exit Intent Popup (UTM-triggered only) ─── */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 46, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.exit-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}
.exit-popup {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px;
  width: calc(100% - 40px);
  text-align: center;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}
.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #d6cfc6;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #5c6a7a;
  transition: all 0.2s;
  padding: 0;
  -webkit-appearance: none;
}
.exit-popup-close:hover {
  border-color: #d4726a;
  color: #d4726a;
}
.exit-popup h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  color: #1b2d4f;
  margin-bottom: 12px;
}
.exit-popup h3 em {
  color: #d4726a;
  font-style: italic;
}
.exit-popup p {
  font-size: 0.9rem;
  color: #5c6a7a;
  line-height: 1.6;
  margin-bottom: 28px;
}
.exit-popup-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.exit-popup-actions .btn-primary {
  padding: 14px 28px;
}
.exit-popup-actions .btn-ghost {
  padding: 14px 28px;
  font-size: 0.85rem;
}

/* ─── Service Page: How It Works Strip ─── */
.svc-how-section {
  padding: 0;
  background: transparent;
  border-bottom: none;
}
.svc-how-strip {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 48px 0 32px;
}
.svc-how-step {
  text-align: center;
  flex: 0 1 220px;
}
.svc-how-num {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(212, 114, 106, 0.5);
  margin-bottom: 8px;
}
.svc-how-step h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  color: #1b2d4f;
  margin-bottom: 6px;
}
.svc-how-step p {
  font-size: 0.78rem;
  color: #5c6a7a;
  line-height: 1.5;
}
.svc-how-step p a {
  color: #d4726a;
  text-decoration: none;
  font-weight: 600;
}
.svc-how-step p a:hover {
  text-decoration: underline;
}
.svc-how-arrow {
  color: #d6cfc6;
  margin-top: 28px;
  flex-shrink: 0;
}
.svc-how-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 0 28px;
  font-size: 0.82rem;
  color: #1b2d4f;
}
.svc-how-urgency svg {
  width: 18px;
  height: 18px;
  color: #d4726a;
  flex-shrink: 0;
}
.svc-how-urgency strong {
  color: #d4726a;
  font-weight: 700;
}
@media (max-width: 767px) {
  .svc-how-strip {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 36px 0 24px;
  }
  .svc-how-arrow {
    transform: rotate(90deg);
    margin: 0;
  }
  .svc-how-step {
    flex: none;
    width: 100%;
    max-width: 280px;
  }
  .svc-how-urgency {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
}

/* ─── Service Page: Trusted Badge ─── */
.svc-enquiry-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.svc-enquiry-trust strong {
  color: #ffffff;
}
.svc-enquiry-trust-avatars {
  display: flex;
}
.svc-enquiry-trust-avatars span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: #ffffff;
  border: 2px solid #0f1a2e;
  margin-right: -8px;
}
.svc-enquiry-trust-avatars span:last-child {
  margin-right: 0;
}


/* How It Works - inline in hero */
.svc-how-inline {
  margin-top: 120px;
  padding: 32px 0;
  border-top: none;
  background: #ffffff;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  margin-bottom: -100px;
  position: relative;
  z-index: 1;
}
.svc-how-inline .svc-how-strip {
  padding: 0;
}
@media (max-width: 767px) {
  .svc-how-inline {
    margin-top: 32px;
    padding-top: 28px;
    padding-bottom: 28px;
    margin-bottom: 0;
  }
}

/* ─── Service Page Enquiry Form ─── */
.svc-enquiry-section {
  padding: 100px 0;
  background: #0f1a2e;
}

.svc-enquiry-section .section-label {
  color: #e8928b;
}
.svc-enquiry-section .section-label::before {
  background: #e8928b;
}
.svc-enquiry-section .section-title {
  color: #ffffff;
}
.svc-enquiry-section .section-title em {
  color: #e8928b;
}
.svc-enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  
.svc-enquiry-section .section-label {
  color: #e8928b;
}
.svc-enquiry-section .section-label::before {
  background: #e8928b;
}
.svc-enquiry-section .section-title {
  color: #ffffff;
}
.svc-enquiry-section .section-title em {
  color: #e8928b;
}
.svc-enquiry-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.svc-enquiry-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 440px;
}
.svc-enquiry-perks {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.svc-enquiry-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.svc-enquiry-perk svg {
  width: 18px;
  height: 18px;
  color: #d4726a;
  flex-shrink: 0;
}
.svc-enquiry-form {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #e8e2da;
}
@media (max-width: 767px) {
  .svc-enquiry-section {
    padding: 64px 0;
  }
  .svc-enquiry-form {
    padding: 28px 24px;
  }
}
/* Form field overrides for service enquiry */
.svc-enquiry-form .gform_wrapper {
  margin: 0;
  padding: 0;
}
.svc-enquiry-form .gform_fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
}
.svc-enquiry-form .gform_fields > .gfield {
  margin: 0;
}
.svc-enquiry-form .gfield.gf-half {
  grid-column: span 1;
}
.svc-enquiry-form .gfield:not(.gf-half):not(.gfield--type-hidden) {
  grid-column: 1 / -1;
}
.svc-enquiry-form .gfield--type-hidden {
  display: none;
}
.svc-enquiry-form label.gfield_label {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1b2d4f;
  margin-bottom: 7px;
  display: block;
}
.svc-enquiry-form .gfield_required {
  color: #d4726a;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 2px;
}
.svc-enquiry-form input[type="text"],
.svc-enquiry-form input[type="email"],
.svc-enquiry-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid transparent;
  border-radius: 10px;
  background: #f6f2ed;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.9rem;
  color: #1b2d4f;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}
.svc-enquiry-form input[type="text"]:focus,
.svc-enquiry-form input[type="email"]:focus,
.svc-enquiry-form textarea:focus {
  border-color: #d4726a;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(212, 114, 106, 0.08);
}
.svc-enquiry-form textarea {
  min-height: 100px;
  resize: vertical;
}
.svc-enquiry-form .gform_button,
.svc-enquiry-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: #d4726a;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s;
  margin-top: 16px;
  width: auto;
}
.svc-enquiry-form .gform_button:hover,
.svc-enquiry-form input[type="submit"]:hover {
  background: #c4625a;
  box-shadow: 0 8px 24px rgba(212, 114, 106, 0.25);
}
.svc-enquiry-form .gform_confirmation_message {
  text-align: center;
  padding: 40px 20px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1rem;
  color: #1b2d4f;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .svc-enquiry-form .gform_fields {
    grid-template-columns: 1fr;
  }
  .svc-enquiry-form .gfield.gf-half {
    grid-column: span 1;
  }
}


/* Service enquiry email alternative */
.svc-enquiry-email {
  text-align: center;
  margin-top: 20px;
  font-size: 0.82rem;
  color: #5c6a7a;
}
.svc-enquiry-email a {
  color: #d4726a;
  font-weight: 600;
  text-decoration: none;
}
.svc-enquiry-email a:hover {
  text-decoration: underline;
}

/* Service enquiry form validation styling */
.svc-enquiry-form .gform_validation_errors,
.svc-enquiry-form .validation_message_heading,
.svc-enquiry-form .gform_validation_errors > * {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0 0 16px;
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #d4726a;
}
.svc-enquiry-form .gform_validation_errors h2,
.svc-enquiry-form .gform_submission_error {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #d4726a;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}
.svc-enquiry-form .gform_validation_errors ol {
  display: none;
}
.svc-enquiry-form .gfield_error input,
.svc-enquiry-form .gfield_error textarea {
  border-color: #d4726a !important;
}
.svc-enquiry-form .gfield_error .gfield_label {
  color: #d4726a;
}
.svc-enquiry-form .validation_message,
.svc-enquiry-form .gfield_description.validation_message {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.72rem;
  color: #d4726a;
  margin-top: 4px;
  padding: 0;
  font-weight: 500;
}

.cta-section {
  background: #0f1a2e;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cta-section {
    padding: 80px 0;
  }
}
.cta-section::before {
  content: "";
  position: absolute;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 114, 106, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section .section-title {
  color: #ffffff;
  margin-bottom: 14px;
}
.cta-section .btn-primary {
  font-size: 0.95rem;
  padding: 18px 40px;
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
}

.page-hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(212, 114, 106, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .page-hero {
    padding: 160px 0 0;
  }
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 767px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.page-hero-content {
  max-width: 620px;
}

.page-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}

.page-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #1b2d4f;
  margin-bottom: 28px;
}
.page-hero h1 em {
  font-style: italic;
  color: #d4726a;
}

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d4726a;
  margin-bottom: 24px;
  background: rgba(212, 114, 106, 0.1333333333);
  padding: 8px 18px 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(212, 114, 106, 0.12);
}
.page-hero-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4726a;
}

.page-hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b2d4f;
  margin-bottom: 24px;
}
.page-hero-title em {
  font-style: italic;
  color: #d4726a;
}

.page-hero-desc {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #5c6a7a;
  max-width: 560px;
  margin-bottom: 32px;
}
.page-hero-desc strong {
  color: #1b2d4f;
  font-weight: 600;
}

.page-hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .page-hero-stats {
    gap: 32px;
    flex-wrap: wrap;
  }
}

.page-hero-stat-value {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  color: #d4726a;
  line-height: 1;
  margin-bottom: 4px;
}

.page-hero-stat-label {
  font-size: 0.72rem;
  color: #8a9aad;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.story-section {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .story-section {
    padding: 16px 0 40px;
  }
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.story-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5c6a7a;
  margin-bottom: 24px;
}
.story-text p:last-child {
  margin-bottom: 0;
}
.story-text strong {
  color: #1b2d4f;
  font-weight: 600;
}

.story-image {
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}
.story-image img {
  width: 66%;
  margin: 0 0 0 auto;
  height: auto;
  display: block;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .story-image img {
    width: 100%;
  }
  .story-image {
    margin-bottom: 40px;
  }
}

.mission-section {
  background: #0f1a2e;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.mission-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 114, 106, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .mission-section {
    padding: 80px 0;
  }
}

.mission-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
@media (max-width: 1024px) {
  .mission-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.mission-label-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.mission-label-col .section-label {
  color: #e8928b;
}
.mission-label-col .section-label::before {
  background: #e8928b;
}
.mission-label-col .section-title {
  color: #ffffff;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .mission-label-col .section-title {
    white-space: normal;
  }
}

.mission-statement {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 40px;
  border-left: 2px solid #d4726a;
}
@media (max-width: 1024px) {
  .mission-statement {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid #d4726a;
    padding-top: 32px;
  }
}

.diff-header {
  text-align: center;
  margin-bottom: 72px;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #d6cfc6;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }
}

.diff-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f6f2ed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.diff-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: #d4726a;
}

.diff-card {
  background: #ffffff;
  padding: 40px 32px;
}
.diff-card h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  color: #1b2d4f;
  margin-bottom: 12px;
  transition: color 0.35s;
}
.diff-card p {
  font-size: 0.88rem;
  color: #5c6a7a;
  line-height: 1.6;
  transition: color 0.35s;
}

.diff-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(212, 114, 106, 0.5);
  margin-bottom: 10px;
}

.timeline-section {
  background: #ffffff;
  border-top: 1px solid #d6cfc6;
  border-bottom: 1px solid #d6cfc6;
}

.timeline-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .timeline-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.timeline-header-desc {
  font-size: 1rem;
  color: #5c6a7a;
  line-height: 1.7;
  max-width: 400px;
  justify-self: end;
}

.timeline-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .timeline-layout {
    grid-template-columns: 1fr;
  }
}

.timeline {
  position: relative;
  padding-left: 48px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: #d6cfc6;
}

.timeline-item {
  position: relative;
  padding-bottom: 56px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -47px;
  top: 8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid #d4726a;
  background: #ffffff;
  z-index: 1;
  transition: background 0.3s;
}
.timeline-item.is-active::before {
  background: #d4726a;
}
.timeline-item h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  color: #1b2d4f;
  margin-bottom: 10px;
}
.timeline-item p {
  font-size: 0.9rem;
  color: #5c6a7a;
  line-height: 1.7;
  max-width: 560px;
}

.timeline-year {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.85rem;
  font-style: italic;
  color: #d4726a;
  margin-bottom: 8px;
}

.timeline-visual {
  position: sticky;
  top: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}
@media (max-width: 1024px) {
  .timeline-visual {
    display: none;
  }
}

.timeline-illustration {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 320px;
}
.timeline-illustration svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.timeline-illustration svg.is-active {
  opacity: 1;
}
.timeline-illustration svg path, .timeline-illustration svg line, .timeline-illustration svg circle, .timeline-illustration svg rect, .timeline-illustration svg polyline, .timeline-illustration svg ellipse {
  stroke: #d4726a;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.timeline-illustration svg .fill-accent {
  fill: rgba(212, 114, 106, 0.1333333333);
  stroke: none;
}
.timeline-illustration svg .stroke-light {
  stroke: #d6cfc6;
}
.timeline-illustration svg.is-active .draw-in {
  animation: drawLine 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes drawLine {
  from {
    stroke-dashoffset: var(--path-length);
  }
  to {
    stroke-dashoffset: 0;
  }
}
.team-header {
  text-align: center;
  margin-bottom: 64px;
}

.team-slider-wrap {
  position: relative;
}

.team-grid {
  overflow: hidden;
}
@media (max-width: 767px) {
  .team-grid {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .team-grid::-webkit-scrollbar {
    display: none;
  }
  .team-track {
    scroll-snap-type: x mandatory;
  }
  .team-card {
    scroll-snap-align: start;
  }
}

.team-track {
  display: flex;
  gap: 24px;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.team-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d6cfc6;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  -webkit-appearance: none;
  appearance: none;
  color: #1b2d4f;
  padding: 0;
}
.team-slider-btn:hover {
  border-color: #d4726a;
  background: #d4726a;
  color: #ffffff;
}
.team-slider-btn svg {
  width: 18px;
  height: 18px;
  color: inherit;
}
.team-slider-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.team-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #ffffff;
  border: 1px solid #d6cfc6;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .team-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 767px) {
  .team-card {
    flex: 0 0 100%;
  }
}
@media (max-width: 1024px) {
  .team-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 767px) {
  .team-card {
    flex: 0 0 100%;
  }
}

.team-card-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #ede7df 0%, #f6f2ed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(15, 26, 46, 0.03) 100%);
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card-initial {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  color: #1b2d4f;
  opacity: 0.1;
  letter-spacing: 0.05em;
}

.team-card-info {
  padding: 24px 28px;
}
.team-card-info h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  color: #1b2d4f;
  margin-bottom: 4px;
}
.team-card-info p {
  font-size: 0.8rem;
  color: #8a9aad;
  font-weight: 500;
}

.team-card-tagline {
  font-size: 0.72rem;
  font-style: italic;
  color: #d4726a;
  margin-top: 6px;
}

.philosophy-section {
  background: #0f1a2e;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.philosophy-section::before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 114, 106, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .philosophy-section {
    padding: 80px 0;
  }
}

.philosophy-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.philosophy-header .section-label {
  color: #e8928b;
}
.philosophy-header .section-label::before {
  background: #e8928b;
}
.philosophy-header .section-title {
  color: #ffffff;
}
@media (max-width: 1024px) {
  .philosophy-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.philosophy-header-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 440px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
}

.philosophy-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}
.philosophy-card h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 8px;
}
.philosophy-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.philosophy-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 114, 106, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.philosophy-icon svg {
  width: 22px;
  height: 22px;
  color: #e8928b;
}

.how-section {
  border-bottom: 1px solid #d6cfc6;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 1024px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.how-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5c6a7a;
  margin-bottom: 36px;
}

.how-list {
  list-style: none;
}
.how-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  font-size: 0.92rem;
  color: #1b2d4f;
  border-bottom: 1px solid #d6cfc6;
}
.how-list li:first-child {
  border-top: 1px solid #d6cfc6;
}
.how-list li svg {
  width: 16px;
  height: 16px;
  color: #d4726a;
  flex-shrink: 0;
}

.how-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.how-visual-card {
  background: #ffffff;
  border: 1px solid #d6cfc6;
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.how-visual-card h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  color: #1b2d4f;
  margin-bottom: 8px;
}
.how-visual-card p {
  font-size: 0.72rem;
  color: #5c6a7a;
  line-height: 1.6;
}

.how-visual-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(212, 114, 106, 0.5);
  opacity: 1;
  line-height: 1;
  margin-bottom: 10px;
}

.how-visual-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f6f2ed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.how-visual-icon svg {
  width: 18px;
  height: 18px;
  color: #1b2d4f;
}

.stack-header {
  text-align: center;
  margin-bottom: 56px;
}

.stack-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.stack-group {
  width: 100%;
  text-align: center;
  margin-bottom: 8px;
}
.stack-group:not(:first-child) {
  margin-top: 16px;
}

.stack-group-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8a9aad;
  margin-bottom: 12px;
}

.stack-tag {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border: 1px solid #d6cfc6;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #5c6a7a;
  background: #ffffff;
}
.stack-tag--featured {
  background: #1b2d4f;
  border-color: #1b2d4f;
  color: #ffffff;
  font-weight: 600;
}

.success-section {
  background: #ffffff;
  border-top: 1px solid #d6cfc6;
  border-bottom: 1px solid #d6cfc6;
}

.success-header {
  text-align: center;
  margin-bottom: 64px;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .success-grid {
    grid-template-columns: 1fr;
  }
}

.success-card {
  border: 1px solid #d6cfc6;
  border-radius: 16px;
  padding: 48px 44px;
  transition: all 0.35s;
  position: relative;
}
.success-card:hover {
  border-color: #d4726a;
  box-shadow: 0 8px 32px rgba(212, 114, 106, 0.08);
}

.success-card-quote-mark {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5rem;
  color: #d4726a;
  opacity: 0.12;
  line-height: 1;
  position: absolute;
  top: 24px;
  left: 36px;
}

.success-metric {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  color: #d4726a;
  margin-bottom: 4px;
  font-weight: 500;
}

.success-metric-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8a9aad;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #d6cfc6;
}

.success-quote {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #1b2d4f;
  font-style: italic;
  margin-bottom: 28px;
}

.success-author {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1b2d4f;
}

.success-role {
  font-size: 0.75rem;
  color: #8a9aad;
  margin-top: 2px;
}

.contact-hero {
  padding: 200px 0 0;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(212, 114, 106, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 520px) {
  .contact-hero {
    padding-top: 160px;
  }
}

.contact-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d4726a;
  margin-bottom: 28px;
  background: rgba(212, 114, 106, 0.1333333333);
  padding: 8px 18px 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(212, 114, 106, 0.12);
}
.contact-hero-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4726a;
  flex-shrink: 0;
}

.contact-hero-upper {
  margin-bottom: 64px;
}

.contact-hero-heading {
  display: flex;
  align-items: baseline;
  gap: 32px;
}
.contact-hero-heading h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #1b2d4f;
}
.contact-hero-heading h1 em {
  font-style: italic;
  color: #d4726a;
}
@media (max-width: 1024px) {
  .contact-hero-heading {
    flex-direction: column;
    gap: 16px;
  }
}

.contact-hero-line {
  flex: 1;
  height: 1px;
  background: #d6cfc6;
  margin-bottom: 18px;
}
@media (max-width: 1024px) {
  .contact-hero-line {
    display: none;
  }
}

.contact-hero-desc {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #5c6a7a;
  max-width: 540px;
  margin-top: 20px;
}

.contact-split {
  display: grid;
  grid-template-columns: 340px minmax(0, 640px);
  justify-content: space-between;
  gap: 72px;
  align-items: start;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact-info {
  position: sticky;
  top: 120px;
}
@media (max-width: 1024px) {
  .contact-info {
    position: static;
  }
}

.contact-info-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-left: -20px;
}
@media (max-width: 767px) {
  .contact-info-block {
    margin-left: 0;
    padding: 8px 0;
    gap: 10px;
  }
}

a.contact-info-block:hover {
  background: #ffffff;
  border-color: #d6cfc6;
}
a.contact-info-block:hover .contact-info-value {
  color: #d4726a;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(212, 114, 106, 0.1333333333);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 16px;
  height: 16px;
  stroke: #d4726a;
}

.contact-info-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d4726a;
  margin-bottom: 4px;
}

.contact-info-value {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  color: #1b2d4f;
  line-height: 1.4;
  transition: color 0.2s;
}

.contact-info-sub {
  font-size: 0.72rem;
  color: #8a9aad;
  margin-top: 2px;
  line-height: 1.5;
}

.contact-form-side {
  background: #ffffff;
  border: 1px solid #d6cfc6;
  border-radius: 20px;
  padding: 48px 44px;
}
@media (max-width: 767px) {
  .contact-form-side {
    padding: 36px 28px;
    border-radius: 16px;
  }
}
@media (max-width: 520px) {
  .contact-form-side {
    padding: 28px 20px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1b2d4f;
}

.form-input,
.form-select,
.form-textarea {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.9rem;
  color: #1b2d4f;
  background: #f6f2ed;
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 14px 16px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: #9a9189;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background-color: #ffffff;
  border-color: #d4726a;
  box-shadow: 0 0 0 4px rgba(212, 114, 106, 0.1333333333), 0 2px 8px rgba(212, 114, 106, 0.08);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a9aad' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.65;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}
@media (max-width: 767px) {
  .form-submit-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.form-label-opt {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #8a9aad;
}

.form-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.form-upload {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1.5px dashed #d6cfc6;
  border-radius: 10px;
  background: #f6f2ed;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.form-upload svg {
  width: 22px;
  height: 22px;
  stroke: #9a9189;
  flex-shrink: 0;
  transition: stroke 0.25s;
}
.form-upload:hover {
  border-color: #d4726a;
  background: rgba(212, 114, 106, 0.03);
}
.form-upload:hover svg {
  stroke: #d4726a;
}
.form-upload-input:focus + .form-upload {
  border-color: #d4726a;
  box-shadow: 0 0 0 4px rgba(212, 114, 106, 0.1333333333);
}

.form-upload-text {
  font-size: 0.85rem;
  color: #5c6a7a;
}
.form-upload-text strong {
  color: #d4726a;
  font-weight: 600;
}

.form-upload-hint {
  font-size: 0.72rem;
  color: #8a9aad;
  margin-left: auto;
}

.form-note {
  font-size: 0.76rem;
  color: #8a9aad;
  line-height: 1.5;
}

.expect-strip {
  display: flex;
  justify-content: center;
  padding: 0;
}
@media (max-width: 1024px) {
  .expect-strip {
    flex-wrap: wrap;
    gap: 24px;
  }
}

.expect-items {
  display: flex;
  gap: 40px;
}
@media (max-width: 1024px) {
  .expect-items {
    flex-wrap: wrap;
    gap: 24px;
  }
}

.expect-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.expect-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(212, 114, 106, 0.1333333333);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.expect-icon svg {
  width: 16px;
  height: 16px;
  stroke: #d4726a;
}

.expect-item-text {
  font-size: 0.85rem;
  color: #5c6a7a;
  line-height: 1.4;
}
.expect-item-text strong {
  color: #1b2d4f;
  font-weight: 600;
}

.process-strip {
  padding: 100px 0;
  border-bottom: 1px solid #d6cfc6;
}

.process-strip-header {
  text-align: center;
  margin-bottom: 72px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #d6cfc6;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.process-card {
  background: #ffffff;
  padding: 48px 36px;
  position: relative;
}
.process-card h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  color: #1b2d4f;
  margin-bottom: 12px;
}
.process-card p {
  font-size: 0.88rem;
  color: #5c6a7a;
  line-height: 1.65;
}

.process-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.85rem;
  font-style: italic;
  color: #d4726a;
  margin-bottom: 28px;
}

.process-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f6f2ed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.process-icon svg {
  width: 22px;
  height: 22px;
  color: #1b2d4f;
}

.contact-form-side .gform_wrapper {
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.contact-form-side .gform_fields {
  display: flex;
  flex-direction: column;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-form-side .gfield {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-form-side .gform_fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
}
@media (max-width: 520px) {
  .contact-form-side .gform_fields {
    grid-template-columns: 1fr;
  }
}

.contact-form-side .gfield {
  grid-column: 1/-1;
}

.contact-form-side .gf-half {
  grid-column: auto;
}

.contact-form-side .gfield_label {
  display: block;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1b2d4f;
  margin-bottom: 7px;
}

.contact-form-side .gfield_required {
  color: #d4726a;
  margin-left: 2px;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.contact-form-side input[type=text],
.contact-form-side input[type=email],
.contact-form-side input[type=tel],
.contact-form-side input[type=url],
.contact-form-side input[type=number],
.contact-form-side select,
.contact-form-side textarea {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.9rem;
  color: #1b2d4f;
  background: #f6f2ed;
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 14px 16px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form-side input[type=text]::placeholder,
.contact-form-side input[type=email]::placeholder,
.contact-form-side input[type=tel]::placeholder,
.contact-form-side input[type=url]::placeholder,
.contact-form-side input[type=number]::placeholder,
.contact-form-side select::placeholder,
.contact-form-side textarea::placeholder {
  color: #9a9189;
}
.contact-form-side input[type=text]:focus,
.contact-form-side input[type=email]:focus,
.contact-form-side input[type=tel]:focus,
.contact-form-side input[type=url]:focus,
.contact-form-side input[type=number]:focus,
.contact-form-side select:focus,
.contact-form-side textarea:focus {
  background-color: #ffffff;
  border-color: #d4726a;
  box-shadow: 0 0 0 4px rgba(212, 114, 106, 0.1333333333), 0 2px 8px rgba(212, 114, 106, 0.08);
}

.contact-form-side textarea {
  height: 120px;
  min-height: 80px;
  resize: vertical;
  line-height: 1.65;
}

.contact-form-side select {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a9aad' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
  padding-right: 40px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form-side .ginput_container_select {
  position: relative;
}

.contact-form-side .gform_drop_area {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1.5px dashed #d6cfc6;
  border-radius: 10px;
  background: #f6f2ed;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.contact-form-side .gform_drop_area:hover {
  border-color: #d4726a;
  background: rgba(212, 114, 106, 0.03);
}
.contact-form-side .gform_drop_area .moxie-shim {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 2 !important;
  overflow: hidden;
}

.contact-form-side .gform_drop_instructions {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.85rem;
  color: #5c6a7a;
}

.contact-form-side .gform_button_select_files {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #d4726a;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.contact-form-side .gform_button_select_files:hover {
  text-decoration: underline;
}

.contact-form-side input[type=file] {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.85rem;
  color: #5c6a7a;
}

.contact-form-side .gfield_description {
  font-size: 0.72rem;
  color: #8a9aad;
  margin-top: 6px;
  line-height: 1.4;
}


.contact-form-side .ginput_preview {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  margin-top: 8px;
  background: rgba(212, 114, 106, 0.06);
  border: 1px solid rgba(212, 114, 106, 0.15);
  border-radius: 8px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.78rem;
  color: #1b2d4f;
  flex-wrap: nowrap;
  overflow: hidden;
  line-height: 1.3;
  min-height: 48px;
}
.contact-form-side .ginput_preview img {
  display: none;
}
.contact-form-side .ginput_preview .ginput_preview_filename,
.contact-form-side .ginput_preview strong {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}
.contact-form-side .ginput_preview .ginput_preview_filesize,
.contact-form-side .ginput_preview b {
  font-size: 0.7rem;
  color: #5c6a7a;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.contact-form-side .ginput_preview .gform_delete {
  margin-left: auto;
  cursor: pointer;
  text-decoration: none;
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 114, 106, 0.2);
  background: none;
  transition: background 0.2s, border-color 0.2s;
  font-size: 0;
  color: transparent;
  overflow: hidden;
  position: relative;
}
.contact-form-side .ginput_preview .gform_delete * {
  display: none !important;
}
.contact-form-side .ginput_preview .gform_delete::after {
  content: "\00d7";
  font-size: 1rem;
  line-height: 1;
  color: #d4726a;
  position: absolute;
}
.contact-form-side .ginput_preview .gform_delete:hover {
  background: rgba(212, 114, 106, 0.1);
  border-color: #d4726a;
}
.contact-form-side .gform_fileupload_rules {
  display: none;
}

.contact-form-side .gform_footer {
  margin-top: 24px;
  padding: 0;
}

.contact-form-side .gform_button,
.contact-form-side input[type=submit] {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  background: #d4726a;
  border: none;
  border-radius: 12px;
  padding: 16px 36px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-appearance: none;
}
.contact-form-side .gform_button:hover,
.contact-form-side input[type=submit]:hover {
  background: rgb(202.8625, 84.0375, 74.3375);
}

.contact-form-side .gfield_error input,
.contact-form-side .gfield_error textarea,
.contact-form-side .gfield_error select {
  border-color: #c44;
}

.contact-form-side .validation_message,
.contact-form-side .gfield_validation_message {
  font-size: 0.75rem;
  color: #c44;
  margin-top: 4px;
}

.contact-form-side .validation_error,
.contact-form-side .gform_validation_errors {
  background: rgba(204, 68, 68, 0.06);
  border: 1px solid rgba(204, 68, 68, 0.2);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 22px;
  font-size: 0.85rem;
  color: #c44;
}
.contact-form-side .validation_error h2, .contact-form-side .validation_error h3,
.contact-form-side .gform_validation_errors h2,
.contact-form-side .gform_validation_errors h3 {
  font-size: 0.85rem;
  margin: 0;
}

.contact-form-side .gform_confirmation_message {
  padding: 48px 0;
  text-align: center;
}

.gf-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gf-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 114, 106, 0.1333333333);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gf-success-icon svg {
  width: 28px;
  height: 28px;
  stroke: #d4726a;
  stroke-width: 2.5;
}

.gf-success h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  color: #1b2d4f;
}

.gf-success p {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.95rem;
  color: #5c6a7a;
  line-height: 1.65;
  max-width: 340px;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .expect-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

.agency-hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.agency-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(246, 242, 237, 0.92) 0%, rgba(246, 242, 237, 0.85) 50%, rgba(246, 242, 237, 0.95) 100%);
}
.agency-hero > .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .agency-hero {
    padding: 140px 0 60px;
  }
}

.how-it-works-section {
  background: #ffffff;
  border-top: 1px solid #d6cfc6;
  border-bottom: 1px solid #d6cfc6;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
@media (max-width: 1024px) {
  .how-it-works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
  }
}

.how-it-works-step {
  padding: 48px 32px;
  position: relative;
  counter-increment: step;
}
.how-it-works-step:not(:last-child) {
  border-right: 1px solid #d6cfc6;
}
@media (max-width: 767px) {
  .how-it-works-step:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #d6cfc6;
  }
}
.how-it-works-step::before {
  content: "0" counter(step);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  color: rgba(212, 114, 106, 0.1333333333);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.how-it-works-step h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  color: #1b2d4f;
  margin-bottom: 10px;
}
.how-it-works-step p {
  font-size: 0.85rem;
  color: #5c6a7a;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: #ffffff;
  border: 1px solid #d6cfc6;
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.3s;
}
.benefit-card:hover {
  border-color: #d4726a;
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(212, 114, 106, 0.08);
}
.benefit-card h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  color: #1b2d4f;
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.85rem;
  color: #5c6a7a;
  line-height: 1.6;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #1b2d4f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.benefit-icon svg {
  width: 18px;
  height: 18px;
  color: #e8928b;
}

.pricing-section {
  background: #0f1a2e;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .pricing-section {
    padding: 80px 0;
  }
}
.pricing-section .btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}
.pricing-section .btn-ghost:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}
.pricing-header .section-title {
  color: #ffffff;
  margin-bottom: 16px;
}

.pricing-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 520px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
}
.pricing-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 114, 106, 0.3);
  transform: translateY(-4px);
}
.pricing-card--featured {
  border-color: #d4726a;
  background: rgba(212, 114, 106, 0.06);
  position: relative;
}

.pricing-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d4726a;
  margin-bottom: 16px;
}

.pricing-card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.pricing-card-price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  color: #d4726a;
  margin-bottom: 8px;
}
.pricing-card-price small {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.pricing-card-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  margin-bottom: 24px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 0;
}
.pricing-feature svg {
  width: 14px;
  height: 14px;
  color: #e8928b;
  flex-shrink: 0;
}

.comparison-section {
  background: #ffffff;
  border-top: 1px solid #d6cfc6;
  border-bottom: 1px solid #d6cfc6;
  padding-bottom: 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.comparison-table th, .comparison-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid #d6cfc6;
}
.comparison-table th {
  font-weight: 700;
  color: #1b2d4f;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #f6f2ed;
}
.comparison-table td {
  color: #5c6a7a;
}
.comparison-table .check {
  color: #d4726a;
}
.comparison-table .cross {
  color: #8a9aad;
  opacity: 0.4;
}

.whyus-section {
  background: #0f1a2e;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.whyus-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 114, 106, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.whyus-section .section-label {
  color: #e8928b;
}
.whyus-section .section-label::before {
  background: #e8928b;
}
@media (max-width: 767px) {
  .whyus-section {
    padding: 80px 0;
  }
}

.whyus-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 96px;
}
.whyus-top .section-title {
  color: #ffffff;
}
@media (max-width: 1024px) {
  .whyus-top {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 56px;
  }
}

.whyus-intro {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
}
.whyus-intro strong {
  font-weight: 500;
  font-style: normal;
  color: rgba(255, 255, 255, 0.75);
}

.whyus-accordion {
  max-width: 860px;
}

.whyus-ac-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  position: relative;
  padding-left: 0;
  transition: padding-left 0.4s;
}
.whyus-ac-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.whyus-ac-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #d4726a;
  transition: width 0.4s;
}
.whyus-ac-item.active {
  padding-left: 28px;
}
.whyus-ac-item.active::before {
  width: 3px;
}

.whyus-ac-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  gap: 24px;
}

.whyus-ac-head-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.whyus-ac-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  color: #d4726a;
  opacity: 0.3;
  min-width: 28px;
  transition: opacity 0.4s;
}
.whyus-ac-item.active .whyus-ac-num {
  opacity: 0.7;
}

.whyus-ac-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.4s;
  line-height: 1.3;
}
.whyus-ac-item.active .whyus-ac-title, .whyus-ac-item:hover .whyus-ac-title {
  color: #ffffff;
}

.whyus-ac-toggle {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
.whyus-ac-toggle::before, .whyus-ac-toggle::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.35s;
  border-radius: 1px;
}
.whyus-ac-toggle::before {
  top: 50%;
  left: 3px;
  right: 3px;
  height: 1.5px;
  transform: translateY(-50%);
}
.whyus-ac-toggle::after {
  left: 50%;
  top: 3px;
  bottom: 3px;
  width: 1.5px;
  transform: translateX(-50%);
}
.whyus-ac-item.active .whyus-ac-toggle::after {
  transform: translateX(-50%) scaleY(0);
}
.whyus-ac-item.active .whyus-ac-toggle::before, .whyus-ac-item.active .whyus-ac-toggle::after {
  background: #e8928b;
}

.whyus-ac-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s;
  opacity: 0;
}
.whyus-ac-item.active .whyus-ac-body {
  max-height: 200px;
  opacity: 1;
}
.whyus-ac-body p {
  padding: 0 0 28px 48px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 560px;
}
@media (max-width: 767px) {
  .whyus-ac-body p {
    padding-left: 0;
  }
}

.cap-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 40px;
}
.cap-header p {
  max-width: 400px;
  font-size: 1rem;
  color: #5c6a7a;
  line-height: 1.6;
  text-align: right;
}
@media (max-width: 1024px) {
  .cap-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cap-header p {
    text-align: left;
  }
}

.cap-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0f1a2e;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .cap-featured {
    grid-template-columns: 1fr;
  }
}

.cap-featured-content {
  padding: 56px 48px;
}
@media (max-width: 767px) {
  .cap-featured-content {
    padding: 36px 28px;
  }
}

.cap-featured-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e8928b;
  margin-bottom: 16px;
}

.cap-featured h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.cap-featured p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.cap-featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cap-featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}
.cap-featured-tag svg {
  width: 12px;
  height: 12px;
  color: #e8928b;
}

.cap-featured-visual {
  background: linear-gradient(135deg, #243b5c 0%, #0f1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  min-height: 320px;
}
.cap-featured-visual canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.cap-featured-visual::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 114, 106, 0.12) 0%, transparent 70%);
}
@media (max-width: 1024px) {
  .cap-featured-visual {
    min-height: 200px;
  }
}

.cap-featured-code {
  font-family: "SF Mono", "Fira Code", monospace;
  font-size: 0.72rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 1;
}
.cap-featured-code .hl {
  color: #e8928b;
}
.cap-featured-code .bl {
  color: #6ab0de;
}
.cap-featured-code .gn {
  color: #7ec699;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: #d6cfc6;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .cap-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .cap-grid {
    grid-template-columns: 1fr;
  }
}

.cap-card {
  background: #ffffff;
  padding: 36px 28px;
}
.cap-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  color: #1b2d4f;
  margin-bottom: 8px;
}
.cap-card p {
  font-size: 0.72rem;
  color: #5c6a7a;
  line-height: 1.6;
}


@media (max-width: 767px) {
  .cap-grid .cap-card:last-child {
    grid-column: 1 / -1;
  }
}
.cap-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f6f2ed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.cap-card-icon svg {
  width: 20px;
  height: 20px;
  color: #1b2d4f;
}

.quote-strip {
  padding: 80px 0;
  border-bottom: 1px solid #d6cfc6;
}

.quote-strip-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-strip-text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: #1b2d4f;
  margin-bottom: 24px;
}

.quote-strip-attr {
  font-size: 0.82rem;
  font-weight: 600;
  color: #5c6a7a;
}
.quote-strip-attr span {
  color: #8a9aad;
  font-weight: 400;
}

.reliability-section {
  position: relative;
  overflow: hidden;
}

.reliability-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .reliability-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.reliability-content {
  max-width: 540px;
}
.reliability-content .section-title {
  margin-bottom: 14px;
}

.reliability-desc {
  font-size: 1rem;
  color: #5c6a7a;
  line-height: 1.7;
  margin-bottom: 48px;
}

.reliability-metrics {
  display: flex;
  flex-direction: column;
}

.reliability-metric {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid #d6cfc6;
}
.reliability-metric:last-child {
  border-bottom: 1px solid #d6cfc6;
}
@media (max-width: 767px) {
  .reliability-metric {
    flex-direction: column;
    gap: 8px;
  }
}

.reliability-metric-val {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: #1b2d4f;
  line-height: 1;
  min-width: 120px;
  flex-shrink: 0;
}
.reliability-metric-val span {
  color: #d4726a;
  font-size: 0.55em;
  vertical-align: baseline;
}
@media (max-width: 767px) {
  .reliability-metric-val {
    min-width: unset;
    font-size: 1.8rem;
  }
}

.reliability-metric-text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1b2d4f;
  margin-bottom: 4px;
}
.reliability-metric-text p {
  font-size: 0.82rem;
  color: #5c6a7a;
  line-height: 1.5;
}

.reliability-illus {
  display: flex;
  align-items: center;
  justify-content: center;
}
.reliability-illus img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}
@media (max-width: 1024px) {
  .reliability-illus {
    order: -1;
  }
}

.pricing-header .section-label {
  color: #e8928b;
}
.pricing-header .section-label::before {
  background: #e8928b;
}

.pricing-header-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 100px;
  background: #d4726a;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.pricing-card-sub {
  font-size: 0.85rem;
  color: #e8928b;
  font-weight: 600;
  margin-bottom: 14px;
}

.pricing-card.featured {
  border-color: rgba(212, 114, 106, 0.3);
  background: rgba(212, 114, 106, 0.06);
  position: relative;
}
.pricing-card.featured:hover {
  border-color: rgba(212, 114, 106, 0.5);
  background: rgba(212, 114, 106, 0.08);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.pricing-features li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: #e8928b;
  flex-shrink: 0;
}

.comparison-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 72px;
}

.comparison-table-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .comparison-table-head {
    display: none;
  }
}

.comparison-table-head-spacer {
  width: 3px;
}

.comparison-table-label {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 0 16px;
}
.comparison-table-label.negative {
  color: #9a9189;
  padding-right: 40px;
  text-align: right;
}
@media (max-width: 1024px) {
  .comparison-table-label.negative {
    padding-right: 24px;
  }
}
.comparison-table-label.positive {
  color: #d4726a;
  padding-left: 40px;
}
@media (max-width: 1024px) {
  .comparison-table-label.positive {
    padding-left: 24px;
  }
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid #d6cfc6;
  padding: 24px 0;
}
.comparison-row:last-child {
  border-bottom: 1px solid #d6cfc6;
}
@media (max-width: 767px) {
  .comparison-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 0;
  }
}

.comparison-pain {
  text-align: right;
  padding-right: 40px;
}
.comparison-pain h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: #8a9aad;
  margin-bottom: 4px;
  text-decoration: line-through;
  text-decoration-color: rgba(0, 0, 0, 0.15);
}
.comparison-pain p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #9a9189;
}
@media (max-width: 1024px) {
  .comparison-pain {
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .comparison-pain {
    text-align: left;
    padding-right: 0;
  }
}

.comparison-divider {
  width: 3px;
  height: 100%;
  min-height: 48px;
  background: linear-gradient(to bottom, #d4726a, #e8928b);
  border-radius: 2px;
  position: relative;
}
.comparison-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  background: #d4726a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #ffffff;
}
@media (max-width: 767px) {
  .comparison-divider {
    width: 100%;
    height: 3px;
    min-height: unset;
    background: linear-gradient(to right, #d4726a, #e8928b);
  }
  .comparison-divider::before {
    display: none;
  }
}

.comparison-gain {
  padding-left: 40px;
}
.comparison-gain h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1b2d4f;
  margin-bottom: 4px;
}
.comparison-gain p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #5c6a7a;
}
@media (max-width: 1024px) {
  .comparison-gain {
    padding-left: 24px;
  }
}
@media (max-width: 767px) {
  .comparison-gain {
    padding-left: 0;
  }
}

.comparison-illus {
  margin-top: 88px;
  text-align: center;
}
.comparison-illus img {
  max-width: 612px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.illus-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  border: 2px dashed #d6cfc6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a9aad;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.3);
}

.illus-placeholder-dark {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.2);
}

.mosaic-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0f1a2e;
}

.mosaic-bg {
  position: absolute;
  inset: -40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
  transform: rotate(-3deg) scale(1.15);
  opacity: 0;
  animation: mosaicFadeIn 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
@media (max-width: 767px) {
  .mosaic-bg {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, 1fr);
  }
}

@keyframes mosaicFadeIn {
  to {
    opacity: 1;
  }
}
.mosaic-tile {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.mosaic-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #0f1a2e;
  opacity: 0.55;
  transition: opacity 0.6s ease;
}
.mosaic-hero:hover .mosaic-tile::after {
  opacity: 0.45;
}
.mosaic-tile .placeholder-img {
  width: 100%;
  height: 100%;
  min-height: 180px;
}
.mosaic-tile .ph-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.3);
}
.mosaic-tile:nth-child(odd) {
  animation: mosaicDrift1 20s ease-in-out infinite alternate;
}
.mosaic-tile:nth-child(even) {
  animation: mosaicDrift2 24s ease-in-out infinite alternate;
}

@keyframes mosaicDrift1 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-12px);
  }
}
@keyframes mosaicDrift2 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(8px);
  }
}
.mosaic-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(15, 26, 46, 0.3) 0%, rgba(15, 26, 46, 0.85) 70%), linear-gradient(to bottom, rgba(15, 26, 46, 0.6) 0%, transparent 30%, transparent 70%, rgba(15, 26, 46, 0.9) 100%);
  pointer-events: none;
  z-index: 1;
}

.mosaic-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 clamp(24px, 4vw, 64px);
}

.mosaic-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e8928b;
  margin-bottom: 32px;
  background: rgba(212, 114, 106, 0.12);
  padding: 8px 18px 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(212, 114, 106, 0.15);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(16px);
  animation: heroContentIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}
.mosaic-hero-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e8928b;
  flex-shrink: 0;
  animation: labelPulse 2s ease-in-out infinite;
}

@keyframes labelPulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
.mosaic-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(24px);
  animation: heroContentIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}
.mosaic-hero h1 em {
  font-style: italic;
  color: #e8928b;
}
@media (max-width: 767px) {
  .mosaic-hero h1 {
    font-size: 2.6rem;
  }
}

.mosaic-hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin: 0 auto 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroContentIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.mosaic-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroContentIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.15s forwards;
}
.mosaic-hero-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}
.mosaic-hero-cta .btn-ghost:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
@media (max-width: 767px) {
  .mosaic-hero-cta {
    flex-direction: column;
    gap: 12px;
  }
}

@keyframes heroContentIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mosaic-stats {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .mosaic-stats {
    display: none;
  }
}

.mosaic-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  opacity: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.mosaic-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  border-radius: 16px 16px 0 0;
}
.mosaic-stat:nth-child(1) {
  top: 20%;
  left: 4%;
  animation: statReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
}
.mosaic-stat:nth-child(2) {
  top: 10%;
  right: 12%;
  animation: statReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
}
.mosaic-stat:nth-child(3) {
  bottom: 26%;
  left: 10%;
  animation: statReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
}
.mosaic-stat:nth-child(4) {
  bottom: 18%;
  right: 4%;
  animation: statReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
}
.mosaic-stat:nth-child(5) {
  top: 42%;
  left: 3%;
  animation: statReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
}
.mosaic-stat:nth-child(6) {
  top: 44%;
  right: 5%;
  animation: statReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
}
@media (max-width: 1024px) {
  .mosaic-stat {
    padding: 16px 22px;
  }
  .mosaic-stat:nth-child(1) {
    left: 2%;
    top: 22%;
  }
  .mosaic-stat:nth-child(2) {
    right: 5%;
    top: 12%;
  }
  .mosaic-stat:nth-child(3) {
    left: 5%;
    bottom: 28%;
  }
  .mosaic-stat:nth-child(4) {
    right: 2%;
    bottom: 20%;
  }
}

@keyframes statReveal {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.mosaic-stat-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.mosaic-stat-number span {
  color: #e8928b;
}

.mosaic-stat-label {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.mosaic-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #ffffff !important;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0;
  animation: scrollReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) 2.2s forwards;
}

@keyframes scrollReveal {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.mosaic-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    transform: scaleY(0.6);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
}
.featured-section {
  background: #0f1a2e;
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}
.featured-section::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 114, 106, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .featured-section {
    padding: 80px 0 0;
  }
}

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 64px;
}
.featured-header .section-label {
  color: #e8928b;
}
.featured-header .section-title {
  color: #ffffff;
}

.featured-view-all {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  flex-shrink: 0;
}
.featured-view-all:hover {
  color: #e8928b;
}
.featured-view-all svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}
.featured-view-all:hover svg {
  transform: translateX(3px);
}

.featured-carousel-wrap {
  position: relative;
  margin: 0 calc(-1 * clamp(24px, 4vw, 64px));
  padding: 0 clamp(24px, 4vw, 64px);
  overflow: hidden;
}

.featured-carousel {
  display: flex;
  gap: 32px;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  padding-bottom: 120px;
}

.featured-card {
  flex: 0 0 calc(60% - 16px);
  min-width: 600px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  background: #243b5c;
  transition: box-shadow 0.5s ease;
}
.featured-card:hover {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}
@media (max-width: 1024px) {
  .featured-card {
    flex: 0 0 80%;
    min-width: 400px;
  }
}
@media (max-width: 767px) {
  .featured-card {
    flex: 0 0 90%;
    min-width: 0;
  }
}

.featured-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.featured-card-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transition: none;
  z-index: 3;
  pointer-events: none;
}
.featured-card:hover .featured-card-inner::after {
  left: 120%;
  transition: left 0.8s ease;
}

.featured-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.featured-card:hover .featured-card-img {
  transform: scale(1.04);
}

.featured-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 40px;
  background: linear-gradient(to top, rgba(15, 26, 46, 0.95) 0%, rgba(15, 26, 46, 0.7) 50%, transparent 100%);
}

.featured-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.featured-card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
}
.featured-card-tag.accent {
  background: rgba(212, 114, 106, 0.2);
  color: #e8928b;
}

.featured-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.15;
}

.featured-card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 460px;
}

.featured-nav {
  position: absolute;
  bottom: 40px;
  left: clamp(24px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 16px;
}

.featured-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  backdrop-filter: blur(10px);
}
.featured-nav-btn:hover:not(:disabled) {
  border-color: #e8928b;
  color: #e8928b;
  background: rgba(212, 114, 106, 0.1);
}
.featured-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.featured-nav-btn svg {
  width: 18px;
  height: 18px;
}

.featured-counter {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  min-width: 48px;
  text-align: center;
}
.featured-counter .current {
  color: #ffffff;
  font-size: 1.1rem;
}

.spotlight-section {
  background: #ffffff;
  border-top: 1px solid #d6cfc6;
  border-bottom: 1px solid #d6cfc6;
  padding: 120px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .spotlight-section {
    padding: 80px 0;
  }
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.spotlight-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #d4726a 0%, #e8928b 100%);
}

.spotlight-badge {
  position: absolute;
  bottom: -12px;
  right: 40px;
  background: #d4726a;
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 12px 40px rgba(212, 114, 106, 0.4);
  z-index: 2;
}

.spotlight-badge-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.spotlight-badge-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.spotlight-content {
  padding-left: 20px;
}
.spotlight-content h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  color: #1b2d4f;
  margin-bottom: 16px;
  line-height: 1.15;
}
.spotlight-content h3 em {
  font-style: italic;
  color: #d4726a;
}

.spotlight-client {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.spotlight-client-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #1b2d4f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  color: #e8928b;
  font-weight: 700;
}

.spotlight-client-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1b2d4f;
}
.spotlight-client-info p {
  font-size: 0.75rem;
  color: #8a9aad;
}

.spotlight-excerpt {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5c6a7a;
  margin-bottom: 32px;
}

.spotlight-metrics {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  padding: 24px 0;
  border-top: 1px solid #d6cfc6;
  border-bottom: 1px solid #d6cfc6;
}

.spotlight-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spotlight-metric-value {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #d4726a;
  line-height: 1;
}

.spotlight-metric-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #8a9aad;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.spotlight-techs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.spotlight-tech {
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid #d6cfc6;
  font-size: 0.72rem;
  font-weight: 600;
  color: #5c6a7a;
  background: #f6f2ed;
}


.spotlight-slider-wrap {
  position: relative;
  overflow: hidden;
  display: grid;
}
.spotlight-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s;
  pointer-events: none;
}
.spotlight-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.spotlight-slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.spotlight-slider-nav.ready {
  opacity: 1;
}
.spotlight-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #d6cfc6;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.spotlight-slider-dot.active {
  background: #d4726a;
  border-color: #d4726a;
  transform: scale(1.15);
}
.spotlight-slider-dot:hover {
  border-color: #d4726a;
}

.gallery-section {
  padding: 120px 0;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 1024px) {
  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

.gallery-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.gallery-filter {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid #d6cfc6;
  background: transparent;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #5c6a7a;
  cursor: pointer;
  transition: all 0.25s;
}
.gallery-filter:hover {
  border-color: #1b2d4f;
  color: #1b2d4f;
}
.gallery-filter.active {
  background: #1b2d4f;
  border-color: #1b2d4f;
  color: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #ede7df;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-card:hover {
  transform: translateY(-6px);
}
.gallery-card.tall {
  grid-row: span 2;
}
@media (max-width: 1024px) {
  .gallery-card.tall {
    grid-row: span 1;
  }
}

.gallery-card-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gallery-card:not(.tall) .gallery-card-img-wrap {
  aspect-ratio: 4/3;
}
.gallery-card.tall .gallery-card-img-wrap {
  height: 100%;
  min-height: 400px;
}
@media (max-width: 1024px) {
  .gallery-card.tall .gallery-card-img-wrap {
    min-height: 0;
    aspect-ratio: 4/3;
  }
}

.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-card:hover .gallery-card-img {
  transform: scale(1.05);
}

.gallery-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  background: linear-gradient(to top, rgba(15, 26, 46, 0.92), transparent);
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-card:hover .gallery-card-overlay {
  transform: translateY(0);
  opacity: 1;
}
.gallery-card-overlay h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 4px;
}
.gallery-card-overlay p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

.gallery-card-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.gallery-card-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.gallery-card-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.12) 0%, transparent 50%);
}
.gallery-card:hover .gallery-card-shine {
  opacity: 1;
}

.gallery-cursor {
  position: fixed;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #d4726a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  transform: scale(0.3);
  transition: opacity 0.25s, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 24px rgba(212, 114, 106, 0.4);
}
.gallery-cursor.active {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 1024px) {
  .gallery-cursor {
    display: none;
  }
}

.divider-angle {
  position: relative;
  height: 80px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .divider-angle {
    height: 50px;
  }
}
.divider-angle--cream-to-navy {
  background: #f6f2ed;
}
.divider-angle--cream-to-navy::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5%;
  right: -5%;
  height: 100%;
  background: #0f1a2e;
  transform: skewY(-2deg);
  transform-origin: bottom right;
}
.divider-angle--navy-to-white {
  background: #0f1a2e;
}
.divider-angle--navy-to-white::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5%;
  right: -5%;
  height: 100%;
  background: #ffffff;
  transform: skewY(1.5deg);
  transform-origin: bottom left;
}
.divider-angle--cream-to-navy-2 {
  background: #f6f2ed;
}
.divider-angle--cream-to-navy-2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5%;
  right: -5%;
  height: 100%;
  background: #0f1a2e;
  transform: skewY(2deg);
  transform-origin: bottom left;
}

.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.placeholder-img .ph-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
}
.placeholder-img .ph-label {
  position: relative;
  z-index: 1;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 16px;
}

.ph-1 {
  background: linear-gradient(135deg, #2d4a7a, #1b2d4f);
}

.ph-2 {
  background: linear-gradient(135deg, #4a6741, #2d4a32);
}

.ph-3 {
  background: linear-gradient(135deg, #7a4a2d, #4f3520);
}

.ph-4 {
  background: linear-gradient(135deg, #4a2d7a, #2d1b4f);
}

.ph-5 {
  background: linear-gradient(135deg, #2d6a7a, #1b4a4f);
}

.ph-6 {
  background: linear-gradient(135deg, #7a2d4a, #4f1b30);
}

.ph-7 {
  background: linear-gradient(135deg, #5c6a2d, #3a4220);
}

.ph-8 {
  background: linear-gradient(135deg, #6a5c2d, #423a20);
}

.ph-9 {
  background: linear-gradient(135deg, #2d5c6a, #1b3a42);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials-header .section-label {
  justify-content: center;
}

.process-section.process-section--dark {
  background: #0f1a2e;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border: none;
}
.process-section.process-section--dark::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 114, 106, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.process-section.process-section--dark .process-header {
  text-align: center;
  margin-bottom: 72px;
}
.process-section.process-section--dark .process-header .section-label {
  justify-content: center;
  color: #e8928b;
}
.process-section.process-section--dark .process-header .section-label::before {
  background: #e8928b;
}
.process-section.process-section--dark .process-header .section-title {
  color: #ffffff;
}
.process-section.process-section--dark .process-header-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 520px;
  margin: 20px auto 0;
  line-height: 1.6;
}
.process-section.process-section--dark .process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 40px;
  background: none;
  border-radius: 0;
  overflow: visible;
}
@media (max-width: 1024px) {
  .process-section.process-section--dark .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .process-section.process-section--dark .process-steps {
    grid-template-columns: 1fr;
  }
}
.process-section.process-section--dark .process-step {
  background: none;
  padding: 32px 0;
  position: relative;
  transition: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.process-section.process-section--dark .process-step h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 10px;
}
.process-section.process-section--dark .process-step p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}
.process-section.process-section--dark .process-step-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(212, 114, 106, 0.4);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}
.process-section.process-section--dark .process-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 114, 106, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.process-section.process-section--dark .process-step-icon svg {
  width: 20px;
  height: 20px;
  color: #e8928b;
}

.featured-card-img-wrap {
  width: 100%;
  overflow: hidden;
}
.featured-card-img-wrap:not(.tall) {
  aspect-ratio: 4/3;
}

.service-hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(212, 114, 106, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .service-hero {
    padding: 140px 0 60px;
  }
}

.service-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 767px) {
  .service-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.service-hero-content {
  max-width: 580px;
}

.service-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d4726a;
  margin-bottom: 24px;
  background: rgba(212, 114, 106, 0.1333333333);
  padding: 8px 18px 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(212, 114, 106, 0.12);
}
.service-hero-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4726a;
}

.service-hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #1b2d4f;
  margin-bottom: 24px;
}
.service-hero-title em {
  font-style: italic;
  color: #d4726a;
}

.service-hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5c6a7a;
  margin-bottom: 32px;
  max-width: 500px;
}
.service-hero-desc strong {
  color: #1b2d4f;
  font-weight: 600;
}

.service-hero-techs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.service-hero-tech {
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid #d6cfc6;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5c6a7a;
  background: #ffffff;
}

.service-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
}

.features-section {
  background: #ffffff;
  border-top: 1px solid #d6cfc6;
  border-bottom: 1px solid #d6cfc6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #d6cfc6;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: #ffffff;
  padding: 40px 32px;
  transition: background 0.3s;
}
.feature-card:hover {
  background: rgba(212, 114, 106, 0.02);
}
.feature-card h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  color: #1b2d4f;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.85rem;
  color: #5c6a7a;
  line-height: 1.6;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #1b2d4f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature-icon svg {
  width: 20px;
  height: 20px;
  color: #e8928b;
}

.features-section--dark {
  background: #0f1a2e;
  border-color: rgba(255, 255, 255, 0.06);
}
.features-section--dark .features-grid {
  background: rgba(255, 255, 255, 0.08);
}
.features-section--dark .feature-card {
  background: rgba(255, 255, 255, 0.04);
}
.features-section--dark .feature-card:hover {
  background: rgba(255, 255, 255, 0.07);
}
.features-section--dark .feature-card h4 {
  color: #ffffff;
}
.features-section--dark .feature-card p {
  color: rgba(255, 255, 255, 0.5);
}
.features-section--dark .feature-icon {
  background: rgba(212, 114, 106, 0.12);
}

.deliverables-section {
  background: #0f1a2e;
  padding: 120px 0;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 767px) {
  .deliverables-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s;
}
.deliverable-item:hover {
  border-color: rgba(212, 114, 106, 0.2);
}
.deliverable-item svg {
  width: 16px;
  height: 16px;
  color: #e8928b;
  flex-shrink: 0;
  margin-top: 2px;
}
.deliverable-item h5 {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 4px;
}
.deliverable-item p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.code-preview {
  background: linear-gradient(135deg, rgba(36, 59, 92, 0.8) 0%, rgba(15, 26, 46, 0.9) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.code-preview-header {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.code-preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.code-preview-dot--red {
  background: #ff5f57;
}
.code-preview-dot--yellow {
  background: #ffbd2e;
}
.code-preview-dot--green {
  background: #28c840;
}

.code-preview-body {
  padding: 24px;
  font-family: "JetBrains Mono", "SF Mono", monospace;
  font-size: 0.72rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  overflow-x: auto;
}
.code-preview-body .keyword {
  color: #c792ea;
}
.code-preview-body .string {
  color: #c3e88d;
}
.code-preview-body .comment {
  color: rgba(255, 255, 255, 0.25);
}
.code-preview-body .function {
  color: #82aaff;
}
.code-preview-body .tag {
  color: #e8928b;
}
.code-preview-body .attr {
  color: #ffcb6b;
}
.code-preview-body .value {
  color: #c3e88d;
}
.code-preview-body .punct {
  color: rgba(255, 255, 255, 0.4);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
}

.use-case-card {
  background: #ffffff;
  border: 1px solid #d6cfc6;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}
.use-case-card:hover {
  border-color: #d4726a;
  box-shadow: 0 8px 24px rgba(212, 114, 106, 0.06);
}
.use-case-card h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  color: #1b2d4f;
  margin-bottom: 10px;
}
.use-case-card p {
  font-size: 0.85rem;
  color: #5c6a7a;
  line-height: 1.6;
}

.use-case-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 114, 106, 0.1333333333);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.use-case-icon svg {
  width: 18px;
  height: 18px;
  color: #d4726a;
}

.process-section {
  background: #ffffff;
  border-top: 1px solid #d6cfc6;
  border-bottom: 1px solid #d6cfc6;
}
.process-section .process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: process;
}
@media (max-width: 1024px) {
  .process-section .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .process-section .process-grid {
    grid-template-columns: 1fr;
  }
}
.process-section .process-card {
  padding: 48px 32px;
  counter-increment: process;
  position: relative;
}
.process-section .process-card:not(:last-child) {
  border-right: 1px solid #d6cfc6;
}
@media (max-width: 767px) {
  .process-section .process-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #d6cfc6;
  }
}
.process-section .process-card::before {
  content: "0" counter(process);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  color: rgba(212, 114, 106, 0.1333333333);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.process-section .process-card h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  color: #1b2d4f;
  margin-bottom: 10px;
}
.process-section .process-card p {
  font-size: 0.82rem;
  color: #5c6a7a;
  line-height: 1.6;
}

.compat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.compat-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid #d6cfc6;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #5c6a7a;
  background: #ffffff;
}
.compat-tag svg {
  width: 16px;
  height: 16px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid #d6cfc6;
}
@media (max-width: 767px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1b2d4f;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat-num span {
  color: #d4726a;
}

.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a9aad;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 36px;
}

.hero-tag {
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid #d6cfc6;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5c6a7a;
  background: #ffffff;
}

.hero-code-card {
  background: #0f1a2e;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .hero-code-card {
    display: none;
  }
}
.hero-code-card::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 114, 106, 0.1) 0%, transparent 70%);
}

.hero-code-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-code-tab {
  padding: 14px 20px;
  font-family: "JetBrains Mono", "SF Mono", monospace;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  border-bottom: 2px solid transparent;
  cursor: default;
}
.hero-code-tab.active {
  color: #e8928b;
  border-bottom-color: #d4726a;
  background: rgba(255, 255, 255, 0.02);
}

.hero-code-body {
  padding: 28px 24px;
  position: relative;
  z-index: 1;
}
.hero-code-body pre {
  font-family: "JetBrains Mono", "SF Mono", monospace;
  font-size: 0.72rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.4);
  overflow-x: auto;
}
.hero-code-body .hl {
  color: #e8928b;
}
.hero-code-body .bl {
  color: #6ab0de;
}
.hero-code-body .gn {
  color: #7ec699;
}
.hero-code-body .cm {
  color: rgba(255, 255, 255, 0.2);
}
.hero-code-body .wh {
  color: rgba(255, 255, 255, 0.7);
}

.svc-tabs-btn-text h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  color: #5c6a7a;
  line-height: 1.2;
  margin-bottom: 2px;
  transition: color 0.35s;
}
.svc-tabs-btn-text p {
  font-size: 0.68rem;
  color: #8a9aad;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.35s;
}
.svc-tabs-btn.active .svc-tabs-btn-text h4 {
  color: #1b2d4f;
}
.svc-tabs-btn.active .svc-tabs-btn-text p {
  color: #d4726a;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  align-items: end;
  margin-bottom: 64px;
}
.services-header .section-label {
  grid-column: 1;
}
.services-header .section-title {
  grid-column: 1;
}
.services-header .services-header-desc {
  grid-column: 2;
  grid-row: 1/3;
  align-self: end;
}
@media (max-width: 1024px) {
  .services-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .services-header .section-label,
  .services-header .section-title,
  .services-header .services-header-desc {
    grid-column: 1;
    grid-row: auto;
  }
}

.services-header-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #5c6a7a;
  max-width: 410px;
  justify-self: end;
}

.svc-tabs {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  min-height: 480px;
}
@media (max-width: 1024px) {
  .svc-tabs {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.svc-tabs-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 1024px) {
  .svc-tabs-nav {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .svc-tabs-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .svc-tabs-nav::-webkit-scrollbar {
    display: none;
  }
  .svc-tabs-nav .svc-tab-btn,
  .svc-tabs-nav .svc-tabs-btn {
    flex-shrink: 0;
    padding: 10px 14px;
    gap: 8px;
  }
}

.svc-tab-btn, .svc-tabs-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.svc-tab-btn::before, .svc-tabs-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 3px;
  background: #d4726a;
  opacity: 0;
  transform: scaleY(0);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 1024px) {
  .svc-tab-btn::before, .svc-tabs-btn::before {
    display: none;
  }
}
.svc-tab-btn:hover, .svc-tabs-btn:hover {
  background: rgba(27, 45, 79, 0.03);
}
.svc-tab-btn.active, .active.svc-tabs-btn {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(27, 45, 79, 0.06);
}
.svc-tab-btn.active::before, .active.svc-tabs-btn::before {
  opacity: 1;
  transform: scaleY(1);
}
@media (max-width: 1024px) {
  .svc-tab-btn, .svc-tabs-btn {
    white-space: nowrap;
    padding: 14px 18px;
  }
}
@media (max-width: 520px) {
  .svc-tab-btn, .svc-tabs-btn {
    padding: 12px 16px;
  }
}

.svc-tab-icon, .svc-tabs-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s;
  background: #ede7df;
  color: #8a9aad;
  border: 1px solid #d6cfc6;
}
.svc-tab-icon svg, .svc-tabs-icon svg {
  width: 18px;
  height: 18px;
}
.svc-tab-btn.active .svc-tab-icon, .active.svc-tabs-btn .svc-tab-icon, .svc-tab-btn.active .svc-tabs-icon, .active.svc-tabs-btn .svc-tabs-icon {
  background: rgba(212, 114, 106, 0.1333333333);
  color: #d4726a;
  border-color: rgba(212, 114, 106, 0.15);
}
@media (max-width: 520px) {
  .svc-tab-icon, .svc-tabs-icon {
    width: 32px;
    height: 32px;
  }
  .svc-tab-icon svg, .svc-tabs-icon svg {
    width: 15px;
    height: 15px;
  }
}

.svc-tab-text h5 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  color: #5c6a7a;
  line-height: 1.2;
  margin-bottom: 2px;
  transition: color 0.35s;
}
.svc-tab-btn.active .svc-tab-text h5, .active.svc-tabs-btn .svc-tab-text h5 {
  color: #1b2d4f;
}
@media (max-width: 520px) {
  .svc-tab-text h5 {
    font-size: 0.88rem;
  }
}
.svc-tab-text span {
  font-size: 0.68rem;
  color: #8a9aad;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.35s;
}
.svc-tab-btn.active .svc-tab-text span, .active.svc-tabs-btn .svc-tab-text span {
  color: #d4726a;
}
@media (max-width: 1024px) {
  .svc-tab-text span {
    display: none;
  }
}

.svc-panels {
  position: relative;
}
@media (max-width: 1024px) {
  .svc-panels {
    min-height: 400px;
  }
}
@media (max-width: 767px) {
  .svc-panels {
    min-height: 0;
  }
  .svc-panel {
    position: absolute;
    display: none;
  }
  .svc-panel.active {
    position: relative;
    display: block;
  }
}

.svc-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 12px 0 0 48px;
  border-left: 2px solid #d6cfc6;
}
.svc-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 1024px) {
  .svc-panel {
    padding: 0;
    border-left: none;
  }
}

.svc-panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: fit-content;
  background: rgba(212, 114, 106, 0.1333333333);
  color: #d4726a;
  border: 1px solid rgba(212, 114, 106, 0.12);
}
.svc-panel-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d4726a;
  flex-shrink: 0;
}

.svc-panel h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.12;
  color: #1b2d4f;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.svc-panel h3 em {
  font-style: normal;
  color: #d4726a;
}
@media (max-width: 767px) {
  .svc-panel h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 520px) {
  .svc-panel h3 {
    font-size: 1.35rem;
  }
}

.svc-panel-desc {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #5c6a7a;
  max-width: 580px;
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  .svc-panel-desc {
    font-size: 0.9rem;
  }
}
@media (max-width: 520px) {
  .svc-panel-desc {
    font-size: 0.85rem;
    margin-bottom: 28px;
  }
}

.svc-panel-divider {
  width: 100%;
  height: 1px;
  background: #d6cfc6;
  margin-bottom: 28px;
}

.svc-panel-sub-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a9aad;
  margin-bottom: 14px;
}

.svc-panel-techs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .svc-panel-techs {
    gap: 6px;
  }
}
@media (max-width: 520px) {
  .svc-panel-techs {
    gap: 5px;
  }
}

.svc-panel-tech {
  font-family: "JetBrains Mono", "SF Mono", monospace;
  font-size: 0.68rem;
  padding: 6px 14px;
  border-radius: 6px;
  background: #ffffff;
  color: #5c6a7a;
  border: 1px solid #d6cfc6;
  cursor: default;
  pointer-events: none;
}
@media (max-width: 767px) {
  .svc-panel-tech {
    font-size: 0.62rem;
    padding: 5px 10px;
  }
}
@media (max-width: 520px) {
  .svc-panel-tech {
    font-size: 0.58rem;
    padding: 4px 8px;
  }
}

.agency-section {
  background: #0f1a2e;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.agency-section::before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 114, 106, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .agency-section {
    padding: 80px 0;
  }
}
@media (max-width: 520px) {
  .agency-section {
    padding: 64px 0;
  }
}

.agency-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .agency-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 767px) {
  .agency-layout {
    gap: 32px;
  }
}
@media (max-width: 520px) {
  .agency-layout {
    gap: 24px;
  }
}

.agency-left {
  align-self: start;
}
.agency-left .section-label {
  color: #e8928b;
}
.agency-left .section-label::before {
  background: #e8928b;
}
.agency-left .section-title {
  color: #ffffff;
}
@media (max-width: 1024px) {
  .agency-left {
    position: static;
  }
}

.agency-left-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.45);
  max-width: 480px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .agency-left-desc {
    font-size: 0.95rem;
  }
}

.agency-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
@media (max-width: 767px) {
  .agency-highlights {
    margin-top: 28px;
    gap: 12px;
  }
}

.agency-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
}
.agency-highlight span {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 520px) {
  .agency-highlight span {
    font-size: 0.72rem;
  }
}

.agency-highlight-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212, 114, 106, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.agency-highlight-check svg {
  width: 14px;
  height: 14px;
  color: #e8928b;
}
@media (max-width: 520px) {
  .agency-highlight-check {
    width: 24px;
    height: 24px;
  }
  .agency-highlight-check svg {
    width: 12px;
    height: 12px;
  }
}

.agency-cta {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .agency-cta {
    margin-top: 32px;
  }
}

.agency-list {
  display: flex;
  flex-direction: column;
}

.agency-list-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.agency-list-item:first-child {
  padding-top: 0;
}
@media (max-width: 767px) {
  .agency-list-item {
    gap: 16px;
    padding: 22px 0;
  }
}
@media (max-width: 520px) {
  .agency-list-item {
    padding: 18px 0;
  }
}

.agency-list-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  min-width: 32px;
  padding-top: 2px;
  transition: color 0.35s;
}
@media (max-width: 767px) {
  .agency-list-num {
    font-size: 1.1rem;
    min-width: 24px;
  }
}
@media (max-width: 520px) {
  .agency-list-num {
    font-size: 1rem;
  }
}

.agency-list-content h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .agency-list-content h4 {
    font-size: 1rem;
  }
}
@media (max-width: 520px) {
  .agency-list-content h4 {
    font-size: 0.95rem;
  }
}
.agency-list-content p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}
@media (max-width: 520px) {
  .agency-list-content p {
    font-size: 0.72rem;
  }
}

.stats-bar {
  padding: 48px 0;
  border-bottom: 1px solid #d6cfc6;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
@media (max-width: 1024px) {
  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .stats-bar-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.stats-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats-bar-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #1b2d4f;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stats-bar-num span {
  color: #d4726a;
}

.stats-bar-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a9aad;
  margin-top: 4px;
}

.code-section {
  background: #f6f2ed;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .code-section {
    padding: 80px 0;
  }
}

.code-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.code-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1024px) {
  .code-layout {
    grid-template-columns: 1fr;
  }
}

.code-block {
  background: #0f1a2e;
  border-radius: 16px;
  overflow: hidden;
}
.code-block pre {
  padding: 28px 24px;
  font-family: "JetBrains Mono", "SF Mono", monospace;
  font-size: 0.72rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.4);
  overflow-x: auto;
  margin: 0;
}
.code-block .hl {
  color: #e8928b;
}
.code-block .bl {
  color: #6ab0de;
}
.code-block .gn {
  color: #7ec699;
}
.code-block .cm {
  color: rgba(255, 255, 255, 0.2);
}
.code-block .wh {
  color: rgba(255, 255, 255, 0.7);
}

.code-block-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.code-block-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.code-block-dot:nth-child(1) {
  background: #ff5f57;
}
.code-block-dot:nth-child(2) {
  background: #ffbd2e;
}
.code-block-dot:nth-child(3) {
  background: #28c840;
}

.code-block-filename {
  font-family: "JetBrains Mono", "SF Mono", monospace;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  margin-left: 8px;
}

.code-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.code-feature {
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #d6cfc6;
}
.code-feature p {
  font-size: 0.85rem;
  color: #5c6a7a;
  line-height: 1.6;
  margin-top: 10px;
}

.code-feature-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1b2d4f;
}
.code-feature-title svg {
  width: 20px;
  height: 20px;
  color: #d4726a;
  flex-shrink: 0;
}

.file-breakdown {
  margin-top: 20px;
}

.file-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}

.file-bar-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #5c6a7a;
  min-width: 80px;
}

.file-bar-track {
  flex: 1;
  height: 6px;
  background: #ede7df;
  border-radius: 3px;
  overflow: hidden;
}

.file-bar-fill {
  height: 100%;
  background: #d4726a;
  border-radius: 3px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.file-bar-val {
  font-family: "JetBrains Mono", "SF Mono", monospace;
  font-size: 0.68rem;
  font-weight: 600;
  color: #8a9aad;
  min-width: 40px;
  text-align: right;
}

.file-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #d6cfc6;
}

.file-total-used {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1b2d4f;
}

.file-total-limit {
  font-size: 0.72rem;
  font-weight: 600;
  color: #8a9aad;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.how-section--steps {
  background: #ffffff;
  border-top: 1px solid #d6cfc6;
  border-bottom: 1px solid #d6cfc6;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .how-section--steps {
    padding: 80px 0;
  }
}
.how-section--steps .how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 767px) {
  .how-section--steps .how-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-step {
  text-align: center;
}
.how-step h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  color: #1b2d4f;
  margin-bottom: 10px;
}
.how-step p {
  font-size: 0.85rem;
  color: #5c6a7a;
  line-height: 1.6;
}

.how-step-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.85rem;
  font-style: italic;
  color: #d6cfc6;
  line-height: 1;
  margin-bottom: 10px;
}

.how-step-detail {
  font-size: 0.72rem;
  font-weight: 600;
  color: #d4726a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 12px;
}

.builder-section {
  background: #f6f2ed;
  padding: 80px 0;
  border-top: 1px solid #d6cfc6;
}

.builder-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .builder-inner {
    flex-direction: column;
    text-align: center;
  }
}
.builder-inner h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  color: #1b2d4f;
  margin-bottom: 4px;
}
.builder-inner p {
  font-size: 0.88rem;
  color: #5c6a7a;
  line-height: 1.6;
  margin-top: 8px;
  max-width: 480px;
}

.builder-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #1b2d4f;
  color: #e8928b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.builder-info {
  flex: 1;
}

.builder-role {
  font-size: 0.75rem;
  font-weight: 600;
  color: #d4726a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.builder-stats {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #d6cfc6;
}
@media (max-width: 767px) {
  .builder-stats {
    justify-content: center;
  }
}

.builder-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.builder-stat-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1b2d4f;
}
.builder-stat-num span {
  color: #d4726a;
}

.builder-stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a9aad;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.compare-table th,
.compare-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid #d6cfc6;
}
.compare-table th {
  font-weight: 700;
  color: #1b2d4f;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #f6f2ed;
}
.compare-table td {
  color: #5c6a7a;
}
.compare-table td:last-child {
  color: #d4726a;
  font-weight: 600;
}
.agency-section .compare-table th,
.agency-section .compare-table td {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.agency-section .compare-table th {
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
}
.agency-section .compare-table th:nth-child(3) {
  color: #e8928b;
}
.agency-section .compare-table td {
  color: rgba(255, 255, 255, 0.5);
}
.agency-section .compare-table td:first-child {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.agency-section .compare-table td:last-child {
  color: #e8928b;
  font-weight: 600;
}

.work-section {
  background: #f6f2ed;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .work-section {
    padding: 80px 0;
  }
}

.projects-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #d4726a;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.projects-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}
.projects-link:hover {
  color: #1b2d4f;
}
.projects-link:hover svg {
  transform: translateX(3px);
}

.project-card-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
}

.project-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(15, 26, 46, 0.85), transparent);
}

.project-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.project-card-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  color: #ffffff;
}

.d2c-section {
  background: #f6f2ed;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .d2c-section {
    padding: 48px 0;
  }
}

.d2c-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .d2c-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.d2c-top-left {
  position: sticky;
  top: 120px;
}
@media (max-width: 1024px) {
  .d2c-top-left {
    position: static;
  }
}

.d2c-top-desc {
  font-size: 1rem;
  color: #5c6a7a;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 480px;
}

.d2c-top-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.d2c-format-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid #d6cfc6;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5c6a7a;
  background: #ffffff;
}

.d2c-top-cta {
  margin-top: 28px;
}

.d2c-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.d2c-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
  border-top: 1px solid #d6cfc6;
}
.d2c-step:last-child {
  border-bottom: 1px solid #d6cfc6;
}

.d2c-step-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: rgba(212, 114, 106, 0.1333333333);
  line-height: 1;
  min-width: 40px;
  flex-shrink: 0;
}

.d2c-step-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1b2d4f;
  margin-bottom: 8px;
}

.d2c-step-text {
  font-size: 0.85rem;
  color: #5c6a7a;
  line-height: 1.6;
}

.d2c-step-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #d4726a;
}
.d2c-step-meta svg {
  width: 16px;
  height: 16px;
}

.d2c-deliverables {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: #d6cfc6;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .d2c-deliverables {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .d2c-deliverables {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .d2c-deliverables {
    grid-template-columns: 1fr;
  }
}

.d2c-deliverable {
  background: #ffffff;
  padding: 28px 20px;
  text-align: center;
}

.d2c-deliverable-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 114, 106, 0.1333333333);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.d2c-deliverable-icon svg {
  width: 20px;
  height: 20px;
  color: #d4726a;
}

.d2c-deliverable-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1b2d4f;
  margin-bottom: 2px;
}

.d2c-deliverable-sub {
  font-size: 0.68rem;
  color: #8a9aad;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 114, 106, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.pricing-card-icon svg {
  width: 22px;
  height: 22px;
  color: #e8928b;
}

.pricing-card-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 24px 0;
}

.pricing-card-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-card-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}
.pricing-card-feat svg {
  width: 16px;
  height: 16px;
  color: #e8928b;
  flex-shrink: 0;
}

.pricing-tier {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e8928b;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 8px;
}
.pricing-price span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.pricing-turnaround {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.pricing-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 32px;
}

.pricing-section--white-cards .pricing-card {
  background: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 40px;
  text-align: left;
}
.pricing-section--white-cards .pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  background: #ffffff;
  border-color: transparent;
}
.pricing-section--white-cards .pricing-card.featured {
  border: 2px solid #d4726a;
  background: #ffffff;
}
.pricing-section--white-cards .pricing-card.featured::after {
  content: "Popular";
  position: absolute;
  top: -12px;
  right: 24px;
  background: #d4726a;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 100px;
}
.pricing-section--white-cards .pricing-tier {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d4726a;
  margin-bottom: 8px;
}
.pricing-section--white-cards .pricing-price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #1b2d4f;
}
.pricing-section--white-cards .pricing-price span {
  font-size: 0.9rem;
  color: #8a9aad;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 500;
}
.pricing-section--white-cards .pricing-turnaround {
  font-size: 0.8rem;
  color: #5c6a7a;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #d6cfc6;
}
.pricing-section--white-cards .pricing-features {
  list-style: none;
  margin-bottom: 32px;
}
.pricing-section--white-cards .pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: #5c6a7a;
  line-height: 1.5;
  padding: 8px 0;
}
.pricing-section--white-cards .pricing-features li svg {
  width: 18px;
  height: 18px;
  color: #d4726a;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-section--white-cards .btn-primary {
  width: 100%;
  justify-content: center;
}
.pricing-section--white-cards .btn-ghost {
  width: 100%;
  justify-content: center;
  border-color: #d6cfc6;
  color: #1b2d4f;
}
.pricing-section--white-cards .btn-ghost:hover {
  border-color: #1b2d4f;
  background: #1b2d4f;
  color: #ffffff;
}

.pricing-grid--light {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .pricing-grid--light {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .pricing-grid--light {
    max-width: 100%;
  }
}
.pricing-grid--light .pricing-card {
  background: #ffffff;
  border: 1px solid #d6cfc6;
  border-radius: 16px;
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .pricing-grid--light .pricing-card {
    padding: 28px 24px 24px;
  }
}
.pricing-grid--light .pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27, 45, 79, 0.08);
  background: #ffffff;
  border-color: #d6cfc6;
}
.pricing-grid--light .pricing-card--featured {
  border-color: #d4726a;
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(212, 114, 106, 0.1);
}
.pricing-grid--light .pricing-card--featured:hover {
  box-shadow: 0 16px 48px rgba(212, 114, 106, 0.15);
}
.pricing-grid--light .pricing-card--featured .pricing-card-icon {
  background: rgba(212, 114, 106, 0.1333333333);
  color: #d4726a;
  border-color: rgba(212, 114, 106, 0.15);
}
.pricing-grid--light .pricing-badge {
  left: 50%;
  transform: translateX(-50%);
}
.pricing-grid--light .pricing-card-icon {
  background: #f6f2ed;
  color: #8a9aad;
  border: 1px solid #d6cfc6;
}
.pricing-grid--light .pricing-card-icon svg {
  color: inherit;
}
.pricing-grid--light .pricing-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  color: #1b2d4f;
  margin-bottom: 8px;
}
.pricing-grid--light .pricing-card h3 em {
  font-style: normal;
  color: #d4726a;
}
.pricing-grid--light .pricing-card-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: #5c6a7a;
  margin-bottom: 28px;
}
.pricing-grid--light .pricing-card-divider {
  width: 100%;
  height: 1px;
  background: #d6cfc6;
  margin-bottom: 24px;
}
.pricing-grid--light .pricing-card-features {
  text-align: left;
  gap: 14px;
  flex: 1;
}
.pricing-grid--light .pricing-card-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.82rem;
  color: #5c6a7a;
  line-height: 1.4;
}
.pricing-grid--light .pricing-card-feat svg {
  width: 16px;
  height: 16px;
  color: #d4726a;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-grid--light .btn-ghost {
  width: 100%;
  justify-content: center;
  border-color: #d6cfc6;
  color: #1b2d4f;
}
.pricing-grid--light .btn-ghost:hover {
  border-color: #1b2d4f;
  background: #1b2d4f;
  color: #ffffff;
}
.pricing-grid--light .btn-primary {
  width: 100%;
  justify-content: center;
}

.scroll-xp {
  position: relative;
  background: #0f1a2e;
}

.scroll-xp-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .scroll-xp-sticky {
    height: auto;
    min-height: auto;
    padding: 80px 0 60px;
  }
}

.scroll-xp-inner {
  display: grid;
  grid-template-columns: 260px 1fr 1fr;
  gap: 48px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 1024px) {
  .scroll-xp-inner {
    display: block;
  }
}

.scroll-xp-nav {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .scroll-xp-nav {
    flex-direction: row;
    overflow-x: auto;
    gap: 0;
  }
}

.scroll-xp-nav-item {
  padding: 18px 0 18px 24px;
  border-left: 2px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-xp-nav-item.active {
  border-left-color: #d4726a;
  padding-left: 28px;
}
@media (max-width: 1024px) {
  .scroll-xp-nav-item {
    border-left: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    white-space: nowrap;
  }
  .scroll-xp-nav-item.active {
    border-bottom-color: #d4726a;
    padding-left: 20px;
  }
}

.scroll-xp-nav-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.5s;
  margin-bottom: 4px;
}
.scroll-xp-nav-item.active .scroll-xp-nav-label {
  color: #e8928b;
}

.scroll-xp-nav-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.5s;
}
.scroll-xp-nav-item.active .scroll-xp-nav-title {
  color: #ffffff;
}

.scroll-xp-canvas-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.scroll-xp-canvas-wrap canvas {
  width: 100%;
  aspect-ratio: 1;
  display: block;
}
@media (max-width: 1024px) {
  .scroll-xp-canvas-wrap {
    max-width: 320px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .scroll-xp-canvas-wrap {
    max-width: 100%;
  }
}

.scroll-xp-shape-label {
  display: none;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "JetBrains Mono", "SF Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  transition: opacity 0.4s;
}

.scroll-xp-right {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .scroll-xp-right {
    min-height: 340px;
  }
}

.scroll-xp-panel {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(calc(-50% + 30px));
  opacity: 0;
  transition: all 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.scroll-xp-panel.active {
  opacity: 1;
  transform: translateY(-50%);
  pointer-events: auto;
}
@media (max-width: 1024px) {
  .scroll-xp-panel {
    padding: 0;
    border-left: none;
  }
}

.scroll-xp-panel-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e8928b;
  margin-bottom: 16px;
}
.scroll-xp-panel-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #e8928b;
}

.scroll-xp-panel h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.scroll-xp-panel h3 em {
  font-style: normal;
  color: #e8928b;
}

.scroll-xp-panel-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
}

.scroll-xp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.scroll-xp-stat {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.scroll-xp-stat-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #e8928b;
  line-height: 1;
  margin-bottom: 4px;
}

.scroll-xp-stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.scroll-xp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scroll-xp-tag {
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.25s;
}
.scroll-xp-tag--featured {
  background: rgba(212, 114, 106, 0.15);
  border-color: rgba(212, 114, 106, 0.25);
  color: #e8928b;
  font-weight: 600;
}

.scroll-xp-features {
  display: flex;
  flex-direction: column;
}

.scroll-xp-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.scroll-xp-feature:first-child {
  padding-top: 0;
}
.scroll-xp-feature h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
  margin-bottom: 2px;
}
.scroll-xp-feature p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.55;
}

.scroll-xp-feature > svg,
.scroll-xp-feature-icon {
  width: 20px;
  height: 20px;
  color: #e8928b;
  flex-shrink: 0;
  margin-top: 1px;
}

.scroll-xp-feature-text h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
  margin-bottom: 2px;
}
.scroll-xp-feature-text p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.55;
}

.scroll-xp-compare {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.scroll-xp-compare-row,
.scroll-xp-compare-row.head {
  min-width: 380px;
}



.scroll-xp-compare-head {
  padding: 0;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: none;
}
.scroll-xp-compare-head:nth-child(1) {
  color: rgba(255, 255, 255, 0.3);
}
.scroll-xp-compare-head:nth-child(2) {
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.scroll-xp-compare-head:nth-child(3) {
  color: #e8928b;
  text-align: center;
}
@media (max-width: 767px) {
  .scroll-xp-compare-head {
    display: none;
  }
}
.scroll-xp-compare-cell {
  padding: 9px 14px;
  font-size: 0.72rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.scroll-xp-compare-cell:nth-child(3n+1) {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}
.scroll-xp-compare-cell:nth-child(3n+2) {
  color: rgba(255, 255, 255, 0.18);
  text-align: center;
}
@media (max-width: 767px) {
  .scroll-xp-compare-cell:nth-child(3n+2) {
    text-align: left;
  }
}
.scroll-xp-compare-cell:nth-child(3n) {
  color: #e8928b;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 767px) {
  .scroll-xp-compare-cell:nth-child(3n) {
    text-align: left;
  }
}

.scroll-xp-compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
}
.scroll-xp-compare-row:last-child {
  border-bottom: none;
}
.scroll-xp-compare-row.head {
  border-bottom-color: rgba(255, 255, 255, 0.15);
  padding: 10px 14px;
  margin-bottom: 0;
}

.scroll-xp-compare-feature {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-xp-compare-bad {
  text-align: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
}

.scroll-xp-compare-good {
  text-align: center;
  color: #e8928b;
  font-weight: 600;
  font-size: 0.72rem;
}

.scroll-xp-progress {
  display: none !important;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
}

.scroll-xp-progress-fill {
  height: 100%;
  background: #d4726a;
  border-radius: 2px;
  width: 25%;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-xp-scroll-hint {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.15);
}
@media (max-width: 1024px) {
  .scroll-xp-scroll-hint {
    display: none;
  }
}

@media (max-width: 767px) {
  .scroll-xp {
    height: auto !important;
  }
  .scroll-xp-sticky {
    position: relative;
    height: auto;
    padding: 60px 0 64px;
  }
  .scroll-xp-canvas-wrap {
    display: none;
  }
  .scroll-xp-shape-label {
  display: none;
    display: none;
  }
  .scroll-xp-progress {
  display: none !important;
    display: none;
  }
  .scroll-xp-right {
    min-height: 0;
    position: relative;
  }
  .scroll-xp-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
    opacity: 0;
    pointer-events: none;
    display: none;
  }
  .scroll-xp-panel.active {
    position: relative;
    display: block;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    overflow: visible;
    max-width: 100%;
  }
  .scroll-xp-compare {
    max-width: 100%;
  }
}

.privacy-hero {
  padding: 150px 0 64px;
  position: relative;
}
@media (max-width: 767px) {
  .privacy-hero {
    padding-top: 160px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .section[style*="padding-top: 180px"] {
    padding-top: 160px !important;
  }
}
@media (max-width: 767px) {
  .scroll-xp {
    height: auto !important;
  }
  .scroll-xp-sticky {
    position: relative;
    height: auto;
    padding: 60px 0 64px;
  }
  .scroll-xp-canvas-wrap {
    display: none;
  }
  .scroll-xp-shape-label {
  display: none;
    display: none;
  }
  .scroll-xp-progress {
  display: none !important;
    display: none;
  }
  .scroll-xp-right {
    min-height: 0;
    position: relative;
  }
  .scroll-xp-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
    opacity: 0;
    pointer-events: none;
    display: none;
  }
  .scroll-xp-panel.active {
    position: relative;
    display: block;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

.privacy-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #1b2d4f;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .scroll-xp {
    height: auto !important;
  }
  .scroll-xp-sticky {
    position: relative;
    height: auto;
    padding: 60px 0 64px;
  }
  .scroll-xp-canvas-wrap {
    display: none;
  }
  .scroll-xp-shape-label {
  display: none;
    display: none;
  }
  .scroll-xp-progress {
  display: none !important;
    display: none;
  }
  .scroll-xp-right {
    min-height: 0;
    position: relative;
  }
  .scroll-xp-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
    opacity: 0;
    pointer-events: none;
    display: none;
  }
  .scroll-xp-panel.active {
    position: relative;
    display: block;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

.privacy-hero h1 em {
  font-style: italic;
  color: #d4726a;
}
@media (max-width: 767px) {
  .privacy-hero h1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 520px) {
  .privacy-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .scroll-xp {
    height: auto !important;
  }
  .scroll-xp-sticky {
    position: relative;
    height: auto;
    padding: 60px 0 64px;
  }
  .scroll-xp-canvas-wrap {
    display: none;
  }
  .scroll-xp-shape-label {
  display: none;
    display: none;
  }
  .scroll-xp-progress {
  display: none !important;
    display: none;
  }
  .scroll-xp-right {
    min-height: 0;
    position: relative;
  }
  .scroll-xp-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
    opacity: 0;
    pointer-events: none;
    display: none;
  }
  .scroll-xp-panel.active {
    position: relative;
    display: block;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

.privacy-hero-inner {
  padding-bottom: 40px;
  border-bottom: 1px solid #d6cfc6;
}

@media (max-width: 767px) {
  .scroll-xp {
    height: auto !important;
  }
  .scroll-xp-sticky {
    position: relative;
    height: auto;
    padding: 60px 0 64px;
  }
  .scroll-xp-canvas-wrap {
    display: none;
  }
  .scroll-xp-shape-label {
  display: none;
    display: none;
  }
  .scroll-xp-progress {
  display: none !important;
    display: none;
  }
  .scroll-xp-right {
    min-height: 0;
    position: relative;
  }
  .scroll-xp-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
    opacity: 0;
    pointer-events: none;
    display: none;
  }
  .scroll-xp-panel.active {
    position: relative;
    display: block;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

.privacy-hero-left {
  flex: 1;
}

@media (max-width: 767px) {
  .scroll-xp {
    height: auto !important;
  }
  .scroll-xp-sticky {
    position: relative;
    height: auto;
    padding: 60px 0 64px;
  }
  .scroll-xp-canvas-wrap {
    display: none;
  }
  .scroll-xp-shape-label {
  display: none;
    display: none;
  }
  .scroll-xp-progress {
  display: none !important;
    display: none;
  }
  .scroll-xp-right {
    min-height: 0;
    position: relative;
  }
  .scroll-xp-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
    opacity: 0;
    pointer-events: none;
    display: none;
  }
  .scroll-xp-panel.active {
    position: relative;
    display: block;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

.privacy-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d4726a;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .scroll-xp {
    height: auto !important;
  }
  .scroll-xp-sticky {
    position: relative;
    height: auto;
    padding: 60px 0 64px;
  }
  .scroll-xp-canvas-wrap {
    display: none;
  }
  .scroll-xp-shape-label {
  display: none;
    display: none;
  }
  .scroll-xp-progress {
  display: none !important;
    display: none;
  }
  .scroll-xp-right {
    min-height: 0;
    position: relative;
  }
  .scroll-xp-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
    opacity: 0;
    pointer-events: none;
    display: none;
  }
  .scroll-xp-panel.active {
    position: relative;
    display: block;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

.privacy-hero-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #d4726a;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .scroll-xp {
    height: auto !important;
  }
  .scroll-xp-sticky {
    position: relative;
    height: auto;
    padding: 60px 0 64px;
  }
  .scroll-xp-canvas-wrap {
    display: none;
  }
  .scroll-xp-shape-label {
  display: none;
    display: none;
  }
  .scroll-xp-progress {
  display: none !important;
    display: none;
  }
  .scroll-xp-right {
    min-height: 0;
    position: relative;
  }
  .scroll-xp-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
    opacity: 0;
    pointer-events: none;
    display: none;
  }
  .scroll-xp-panel.active {
    position: relative;
    display: block;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

.privacy-hero-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5c6a7a;
  max-width: 480px;
}

.privacy-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.8rem;
  color: #8a9aad;
}
.privacy-meta svg {
  width: 15px;
  height: 15px;
  stroke: #d4726a;
  flex-shrink: 0;
}

.policy-section {
  padding: 64px 0 120px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .policy-layout {
    grid-template-columns: 240px 1fr;
    gap: 48px;
  }
}
@media (max-width: 767px) {
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.toc-sidebar {
  position: sticky;
  top: 120px;
}
@media (max-width: 767px) {
  .toc-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid #d6cfc6;
  }
}

.toc-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d4726a;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toc-label::before {
  content: "";
  width: 16px;
  height: 1px;
  background: #d4726a;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.toc-list li {
  border-left: 2px solid #d6cfc6;
}
.toc-list li.active {
  border-left-color: #d4726a;
}
.toc-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #8a9aad;
  text-decoration: none;
  transition: all 0.3s;
  line-height: 1.3;
}
.toc-list a:hover {
  color: #1b2d4f;
}
.toc-list li.active a {
  color: #1b2d4f;
  font-weight: 600;
}
@media (max-width: 767px) {
  .toc-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .toc-list li {
    border-left: none;
    border-bottom: 2px solid #d6cfc6;
  }
  .toc-list li.active {
    border-bottom-color: #d4726a;
  }
  .toc-list a {
    padding: 10px 14px;
    font-size: 0.75rem;
  }
  .toc-list .toc-num {
    display: none;
  }
}

.toc-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.75rem;
  font-style: italic;
  color: #d6cfc6;
  min-width: 20px;
  transition: color 0.3s;
}
.toc-list li.active .toc-num {
  color: #d4726a;
}

.policy-content {
  max-width: 640px;
}
.policy-content ul, .policy-content ol {
  list-style: disc;
  padding-left: 24px;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.policy-content ol {
  list-style: decimal;
}
.policy-content li {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #5c6a7a;
  padding-left: 4px;
}

.policy-block {
  margin-bottom: 64px;
  scroll-margin-top: 120px;
}
.policy-block:last-child {
  margin-bottom: 0;
}

.policy-block-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d6cfc6;
}
@media (max-width: 520px) {
  .policy-block-header {
    flex-direction: column;
    gap: 8px;
  }
}

.policy-block-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.85rem;
  font-style: italic;
  color: #d4726a;
  flex-shrink: 0;
}

.policy-block h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  color: #1b2d4f;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.policy-block p {
  font-size: 0.92rem;
  color: #5c6a7a;
  line-height: 1.8;
  margin-bottom: 16px;
}
.policy-block p:last-child {
  margin-bottom: 0;
}

.policy-block ul,
.policy-block ol {
  margin: 16px 0;
  padding-left: 24px;
}

.policy-block li {
  font-size: 0.92rem;
  color: #5c6a7a;
  line-height: 1.8;
  margin-bottom: 8px;
}
.policy-block li strong {
  color: #1b2d4f;
  font-weight: 600;
}

.policy-block a {
  color: #d4726a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.policy-block a:hover {
  color: #c4625a;
}

.faq-section {
  padding: 120px 0;
  border-bottom: 1px solid #d6cfc6;
}
@media (max-width: 767px) {
  .faq-section {
    padding: 80px 0;
  }
}

.faq-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .faq-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.faq-header-desc {
  font-size: 1.05rem;
  color: #5c6a7a;
  line-height: 1.7;
  padding-top: 36px;
}

.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid #d6cfc6;
}
.faq-item:first-child {
  border-top: 1px solid #d6cfc6;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 20px;
}
.faq-question h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  color: #1b2d4f;
  transition: color 0.2s;
}
.faq-question .faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #d6cfc6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-question .faq-toggle svg {
  width: 14px;
  height: 14px;
  color: #5c6a7a;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-question h4 {
  color: #d4726a;
}
.faq-item.open .faq-question .faq-toggle {
  background: #d4726a;
  border-color: #d4726a;
}
.faq-item.open .faq-question .faq-toggle svg {
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-answer {
  max-height: 400px;
}
.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.9rem;
  color: #5c6a7a;
  line-height: 1.7;
  max-width: 640px;
}

.faq-section--dark {
  background: #0f1a2e;
}
.faq-section--dark .faq-item {
  border-color: rgba(255, 255, 255, 0.08);
}
.faq-section--dark .faq-question h4 {
  color: #ffffff;
}
.faq-section--dark .faq-toggle {
  border-color: rgba(255, 255, 255, 0.15);
}
.faq-section--dark .faq-toggle svg {
  color: rgba(255, 255, 255, 0.5);
}
.faq-section--dark .faq-item.open .faq-question h4 {
  color: #e8928b;
}
.faq-section--dark .faq-item.open .faq-question .faq-toggle {
  background: #d4726a;
  border-color: #d4726a;
}
.faq-section--dark .faq-item.open .faq-question .faq-toggle svg {
  color: #ffffff;
}
.faq-section--dark .faq-answer p {
  color: rgba(255, 255, 255, 0.5);
}

.faq-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
  gap: 40px;
}
@media (max-width: 767px) {
  .faq-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.faq-top-desc {
  font-size: 1rem;
  color: #5c6a7a;
  line-height: 1.6;
  max-width: 400px;
  text-align: right;
}
@media (max-width: 767px) {
  .faq-top-desc {
    text-align: left;
  }
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 767px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-ac-item {
  border-top: 1px solid #d6cfc6;
  cursor: pointer;
  position: relative;
  padding-left: 0;
  transition: padding-left 0.4s;
}
.faq-ac-item:last-child {
  border-bottom: 1px solid #d6cfc6;
}
.faq-ac-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #d4726a;
  transition: width 0.4s;
}
.faq-ac-item.active {
  padding-left: 24px;
}
.faq-ac-item.active::before {
  width: 3px;
}
.faq-ac-item.active .faq-ac-toggle::after {
  transform: translateX(-50%) scaleY(0);
}
.faq-ac-item.active .faq-ac-toggle::before, .faq-ac-item.active .faq-ac-toggle::after {
  background: #d4726a;
}
.faq-ac-item.active .faq-ac-title {
  color: #d4726a;
}
.faq-ac-item.active .faq-ac-body {
  max-height: 300px;
  opacity: 1;
}
.faq-ac-item:hover .faq-ac-title {
  color: #d4726a;
}

.faq-ac-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 24px;
}

.faq-ac-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #1b2d4f;
  transition: color 0.3s;
  line-height: 1.3;
}

.faq-ac-toggle {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
.faq-ac-toggle::before, .faq-ac-toggle::after {
  content: "";
  position: absolute;
  background: #d6cfc6;
  transition: all 0.35s;
  border-radius: 1px;
}
.faq-ac-toggle::before {
  top: 50%;
  left: 3px;
  right: 3px;
  height: 1.5px;
  transform: translateY(-50%);
}
.faq-ac-toggle::after {
  left: 50%;
  top: 3px;
  bottom: 3px;
  width: 1.5px;
  transform: translateX(-50%);
}

.faq-ac-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s;
  opacity: 0;
}
.faq-ac-body p {
  padding: 0 0 24px 0;
  font-size: 0.88rem;
  color: #5c6a7a;
  line-height: 1.75;
  max-width: 640px;
}

.service-card p {
  margin-bottom: 15px;
}

.ginput_preview_list .gfield_fileupload_filename {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.ginput_preview_list .gfield_fileupload_filesize {
  white-space: nowrap;
  flex-shrink: 0;
}

.ginput_preview_list .gfield_fileupload_cancel {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}

.ginput_preview_list .gfield_fileupload_cancel:hover {
  opacity: 1;
  color: #d4726a;
}

.ginput_preview_list .gform_delete_file {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
}

/* Temporarily hide testimonials */
.testimonials-section { display: none !important; }
