/* Services listing + detail pages (from Design/Services files) */
.lt-svc-intro {
  max-width: 820px;
  margin: 64px auto 10px;
  padding: 0 24px;
  text-align: center;
}
.lt-svc-intro .eyebrow {
  color: var(--accent-color, #2b59ff);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lt-svc-intro h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  margin: 0 0 16px;
  font-weight: 800;
  color: var(--heading-color, #172033);
}
.lt-svc-intro p {
  color: #5b6472;
  font-size: 16px;
  margin: 0;
}

.lt-svc-grid-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 70px;
}
.lt-svc-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 10px 30px rgba(20, 24, 34, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.lt-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(20, 24, 34, 0.12);
}
.lt-svc-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: stretch;
}
.lt-svc-card-media {
  height: 220px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  position: relative;
}
.lt-svc-card-media .lt-svc-icon {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 6px 16px rgba(43, 89, 255, 0.4);
}
.lt-svc-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-color, #2b59ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  font-size: 1.6rem;
}
.lt-svc-card-body {
  background: #fff;
  padding: 46px 24px 28px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.lt-svc-card-body h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--heading-color, #172033);
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lt-svc-card-body p {
  margin: 0 0 16px;
  color: #5b6472;
  font-size: 15px;
  flex: 1;
}
.lt-svc-card-body a.more {
  font-weight: 700;
  font-size: 14px;
  color: var(--accent-color, #2b59ff);
  text-decoration: none;
}
.lt-svc-card-body a.more:hover {
  text-decoration: underline;
}

.lt-svc-detail {
  max-width: 980px;
  margin: 50px auto 70px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  align-items: start;
}
.lt-svc-detail .number {
  color: var(--accent-color, #2b59ff);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.lt-svc-detail h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  margin: 0 0 8px;
  font-weight: 800;
  color: var(--heading-color, #172033);
}
.lt-svc-lede {
  font-size: 17px;
  color: var(--heading-color, #172033);
  font-weight: 600;
  margin: 0 0 14px;
}
.lt-svc-body {
  color: #5b6472;
  font-size: 16px;
  margin: 0 0 22px;
  max-width: 640px;
}
.lt-svc-tag-label {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--heading-color, #172033);
  margin-bottom: 12px;
}
.lt-svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lt-svc-tag {
  background: #f6f7fb;
  border: 1px solid #e7e9ee;
  color: #1c2230;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
}

.lt-svc-related {
  background: #f6f7fb;
  padding: 60px 24px;
}
.lt-svc-related-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.lt-svc-related h4 {
  text-align: center;
  font-size: 22px;
  margin: 0 0 32px;
  font-weight: 800;
  color: var(--heading-color, #172033);
}
.lt-svc-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.lt-svc-related-card {
  background: #fff;
  border: 1px solid #e7e9ee;
  border-radius: 10px;
  padding: 26px 20px;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.lt-svc-related-card:hover {
  box-shadow: 0 12px 28px rgba(30, 40, 70, 0.08);
  transform: translateY(-3px);
}
.lt-svc-related-card .lt-svc-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  font-size: 1.15rem;
}
.lt-svc-related-card a {
  color: #1c2230;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}
.lt-svc-related-card a:hover {
  color: var(--accent-color, #2b59ff);
}

.lt-svc-cta {
  text-align: center;
  padding: 70px 24px;
}
.lt-svc-cta h4 {
  font-size: 24px;
  margin: 0 0 12px;
  font-weight: 800;
  color: var(--heading-color, #172033);
}
.lt-svc-cta p {
  color: #5b6472;
  margin: 0 0 24px;
}

@media (max-width: 640px) {
  .lt-svc-detail { grid-template-columns: 1fr; }
  .lt-svc-card-grid { grid-template-columns: 1fr; }
}

/* ---------- About page ---------- */
.lt-about-intro {
  max-width: 1180px;
  margin: 70px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.lt-about-photo {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.lt-about-photo img {
  width: 100%;
  display: block;
  height: 640px;
  object-fit: cover;
}
.lt-about-copy { position: relative; }
.lt-about-ghost {
  position: absolute;
  top: -80px;
  left: -6px;
  font-size: clamp(72px, 12vw, 110px);
  font-weight: 800;
  color: #f0f2f7;
  z-index: 0;
  line-height: 1;
  user-select: none;
  font-family: "Playfair Display", Georgia, serif;
}
.lt-about-copy h2 {
  position: relative;
  z-index: 1;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #1c2230;
  margin: 0 0 22px;
  line-height: 1.25;
}
.lt-about-desc {
  position: relative;
  z-index: 1;
  color: #5b6472;
  font-size: 16px;
  max-width: 540px;
  margin: 0 0 34px;
}
.lt-about-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 60px;
  padding-top: 30px;
  border-top: 1px solid #e7e9ee;
  flex-wrap: wrap;
}
.lt-stat-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: #1c2230;
  position: relative;
  display: inline-block;
}
.lt-stat-num::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--dot-color, var(--accent-color, #2b59ff));
}
.lt-stat-label {
  color: #5b6472;
  font-size: 14px;
  margin-top: 8px;
}

.lt-story-section {
  max-width: 820px;
  margin: 30px auto 90px;
  padding: 0 24px;
  text-align: center;
}
.lt-story-section h3 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 16px;
  color: #1c2230;
}
.lt-story-section p {
  color: #5b6472;
  font-size: 16px;
  margin: 0;
}

.lt-process-section {
  background: #f6f7fb;
  padding: 70px 24px;
}
.lt-process-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.lt-process-inner h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 40px;
  color: #1c2230;
}
.lt-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.lt-process-card {
  background: #fff;
  border: 1px solid #e7e9ee;
  border-radius: 10px;
  padding: 30px 24px;
}
.lt-step-num {
  color: var(--accent-color, #2b59ff);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.lt-process-card h5 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: #1c2230;
}
.lt-process-card p {
  margin: 0;
  color: #5b6472;
  font-size: 14.5px;
}

.lt-values-section {
  max-width: 1100px;
  margin: 80px auto 90px;
  padding: 0 24px;
}
.lt-values-section h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 40px;
  color: #1c2230;
}
.lt-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.lt-value-card h5 {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #1c2230;
}
.lt-value-card p {
  margin: 0;
  color: #5b6472;
  font-size: 14.5px;
}

@media (max-width: 860px) {
  .lt-about-intro { grid-template-columns: 1fr; }
  .lt-about-ghost { display: none; }
  .lt-about-photo img { height: 420px; }
}

/* ---------- Portfolio listing ---------- */
.lt-pf-intro {
  max-width: 720px;
  margin: 60px auto 10px;
  padding: 0 24px;
  text-align: center;
  color: #5b6472;
  font-size: 16px;
}
.lt-pf-grid-section {
  width: 100%;
  max-width: 1180px;
  margin: 40px auto 90px;
  padding: 0 24px;
  box-sizing: border-box;
}
.lt-pf-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}
.lt-pf-card {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e7e9ee;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  width: 100%;
}
.lt-pf-card:hover {
  box-shadow: 0 14px 32px rgba(20, 24, 34, 0.1);
  transform: translateY(-3px);
}
.lt-pf-media {
  height: 210px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-color: #e8ecf3;
  flex-shrink: 0;
}
.lt-pf-body {
  padding: 24px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.lt-pf-tag {
  display: inline-block;
  align-self: flex-start;
  background: #f6f7fb;
  color: var(--accent-color, #2b59ff);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.lt-pf-body h4 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 800;
  color: #1c2230;
  line-height: 1.3;
}
.lt-pf-client {
  color: #5b6472;
  font-size: 13px;
  margin: 0 0 12px;
  font-weight: 600;
}
.lt-pf-desc {
  margin: 0 0 16px;
  color: #5b6472;
  font-size: 14.5px;
  flex: 1;
}
.lt-pf-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color, #2b59ff);
  text-decoration: none;
}
.lt-pf-link:hover { text-decoration: underline; }

@media (max-width: 992px) {
  .lt-pf-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .lt-pf-grid { grid-template-columns: 1fr; }
}
