:root {
  --accent: #ff6b24;
  --accent-soft: rgba(255, 107, 36, 0.15);
}

#services-section {
  min-height: calc(100vh - 220px);
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

#services-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 220px);
}

.services-section {
  overflow: hidden;
  background: transparent !important;
  color: #111827;
  font-family: 'Inter', system-ui, sans-serif;
  padding: 0 0 60px 0;
  flex: 1 0 auto;
}
body.night .services-section {
  color: #ffffff;
}

.services-section h1,
.services-section h2,
.services-section h3 {
  color: #111827;
  font-family: 'Inter', system-ui, sans-serif;
}
body.night .services-section h1,
body.night .services-section h2,
body.night .services-section h3 {
  color: #ffffff;
}

.hero-wrap {
  max-width: 1300px;
  min-height: 520px;
  margin: 30px auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 28px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
body.night .hero-wrap {
  background: rgba(18, 18, 22, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.eyebrow img {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  max-width: 32px;
  max-height: 32px;
  padding: 2px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}
body.night .eyebrow img {
  background: rgba(255, 255, 255, 0.1);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #111827;
  font-weight: 900;
}
body.night .hero-copy h1 {
  color: #ffffff;
}
.hero-copy h1 span {
  display: block;
  color: #111827;
}
body.night .hero-copy h1 span {
  color: #ffffff;
}

.hero-copy > p {
  max-width: 600px;
  margin: 20px 0 28px 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 16px;
  line-height: 1.65;
}
body.night .hero-copy > p {
  color: rgba(255, 255, 255, 0.78);
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
  border-radius: 14px;
  color: #ffffff;
  background: #111827;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
body.night .primary-cta {
  background: linear-gradient(135deg, var(--accent), #d9531e);
  box-shadow: 0 8px 25px rgba(218, 100, 42, 0.35);
}
.primary-cta:hover {
  transform: translateY(-2px);
  background: #d1a800;
  box-shadow: 0 12px 30px rgba(209, 168, 0, 0.4);
}
body.night .primary-cta:hover {
  box-shadow: 0 12px 30px rgba(218, 100, 42, 0.5);
}
.primary-cta span {
  color: #ffffff;
  font-size: 16px;
}

.value-row {
  display: flex;
  gap: 28px;
  margin-top: 40px;
}
.value-row div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
body.night .value-row div {
  color: rgba(255, 255, 255, 0.7);
}
.value-row b {
  color: #d1a800;
}
body.night .value-row b {
  color: var(--accent);
}

.visual-stage {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.08) 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
body.night .visual-stage {
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0.4) 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.visual-stage > img {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: auto;
  height: auto;
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 20px 20px rgba(0,0,0,0.15));
  animation: floatVisual 4s ease-in-out infinite alternate;
  pointer-events: none;
}
body.night .visual-stage > img {
  filter: drop-shadow(0 20px 20px rgba(0,0,0,0.4));
}

@keyframes floatVisual {
  0% { transform: translate(-50%, -52%); }
  100% { transform: translate(-50%, -46%); }
}

.orbit {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
body.night .orbit {
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.orbit.one {
  width: 108%;
  height: 48%;
  transform: translate(-50%, -50%) rotate(-18deg);
}
.orbit.two {
  width: 65%;
  height: 92%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.visual-badge {
  position: absolute;
  z-index: 5;
  right: 5%;
  bottom: 5%;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #111827;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
body.night .visual-badge {
  background: rgba(18, 18, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.visual-badge small {
  display: block;
  color: #d1a800;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
body.night .visual-badge small {
  color: var(--accent);
}
.visual-badge strong {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: #111827;
}
body.night .visual-badge strong {
  color: #ffffff;
}

.services-wrap {
  max-width: 1300px;
  margin: 30px auto;
  padding: 40px 24px;
}
.cards-heading {
  padding-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
.cards-heading span {
  color: #d1a800;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
body.night .cards-heading span {
  color: var(--accent);
}
.cards-heading h2 {
  max-width: 650px;
  margin: 8px 0 0 0;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111827;
}
body.night .cards-heading h2 {
  color: #ffffff;
}
.cards-heading p {
  max-width: 380px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  line-height: 1.6;
}
body.night .cards-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  min-height: 380px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  color: #111827;
}
body.night .service-card {
  background: rgba(22, 22, 28, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #d1a800;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 0 0 2px #d1a800;
}
body.night .service-card:hover {
  border-color: #d1a800;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 0 2px #d1a800;
}

.card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  font-weight: 800;
}
body.night .card-topline {
  color: rgba(255, 255, 255, 0.5);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  overflow: hidden;
}
body.night .card-icon {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.card-icon img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.card-meta {
  color: #d1a800;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
body.night .card-meta {
  color: var(--accent);
}

.service-card h3 {
  margin: 14px 0 10px 0;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #111827;
}
body.night .service-card h3 {
  color: #ffffff;
}

.service-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  line-height: 1.6;
}
body.night .service-card p {
  color: rgba(255, 255, 255, 0.72);
}

.service-link {
  min-height: 48px;
  padding: 8px 12px 8px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 14px;
  color: #ffffff;
  background: #111827;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
body.night .service-link {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover .service-link {
  background: #d1a800;
  border-color: #d1a800;
}
body.night .service-card:hover .service-link {
  background: #d1a800;
  border-color: #d1a800;
}

.service-link strong {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: #17171a;
  background: #ffffff;
  font-size: 15px;
}

.contact-strip {
  max-width: 1300px;
  margin: 30px auto;
  padding: 40px;
  border-radius: 24px;
  color: #ffffff;
  background: #181a24;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.contact-strip span {
  color: #d1a800;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.contact-strip h2 {
  margin: 6px 0 0 0;
  font-size: clamp(24px, 3vw, 38px);
  color: #ffffff;
}
.contact-strip > a {
  padding: 14px 24px;
  border-radius: 14px;
  color: #17171a;
  background: #ffffff;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.contact-strip > a:hover {
  transform: scale(1.04);
}

#detail-root {
  background: transparent;
  color: #ffffff;
  padding-bottom: 40px;
}
.detail-hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 18, 22, 0.65);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  margin: 20px auto;
  max-width: 1300px;
}
.detail-hero-grid {
  max-width: 1300px;
  min-height: 450px;
  margin: auto;
  padding: 50px 30px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
}
.breadcrumb {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.breadcrumb span {
  color: var(--accent);
}
.detail-kicker {
  width: max-content;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 8px;
  color: var(--accent);
  background: rgba(255, 107, 36, 0.15);
  font-size: 10px;
  font-weight: 900;
}
.detail-copy h1 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.02;
  color: #ffffff;
}
.detail-lead {
  max-width: 650px;
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.6;
}
.detail-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.detail-secondary {
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s ease;
}
.detail-secondary:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.detail-visual {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.detail-visual img {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 72%;
  height: 72%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  transition: transform 0.4s ease;
  pointer-events: none;
}
.detail-visual:hover img {
  transform: translate(-50%, -50%) scale(1.05);
}
.detail-section {
  max-width: 1300px;
  margin: auto;
  padding: 50px 24px;
}
.section-index {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.overview-grid {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
}
.overview-grid h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 46px);
  color: #ffffff;
}
.overview-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}
.detail-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.detail-value-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(22, 22, 28, 0.65);
  color: #ffffff;
}
.detail-value-card > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: #ffffff;
  background: var(--accent);
  font-size: 10px;
  font-weight: 900;
}
.detail-value-card h3 {
  margin: 24px 0 8px;
  font-size: 18px;
  color: #ffffff;
}
.detail-value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.6;
}
.detail-cta {
  max-width: 1300px;
  margin: 20px auto;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 24px;
  color: #ffffff;
  background: rgba(18, 18, 22, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.detail-cta h2 {
  margin: 8px 0;
  font-size: clamp(28px, 3.5vw, 44px);
  color: #ffffff;
}
.detail-cta > a {
  flex: 0 0 auto;
  padding: 14px 22px;
  border-radius: 12px;
  color: #17171a;
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}
.detail-footer {
  max-width: 1300px;
  margin: auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}
.detail-footer a {
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 780px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 18px;
  }
  .visual-stage {
    width: min(90vw, 320px);
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .cards-heading {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
  }
  .detail-hero-grid {
    grid-template-columns: 1fr;
    padding: 30px 18px;
  }
  .detail-value-grid {
    grid-template-columns: 1fr;
  }
}

