/*
Theme Name: Dcode Template
Theme URI: https://sigmacode.it/
Author: SigmaCodeIt
Author URI: https://sigmacode.it/
Description: Minimal full custom theme for Dcode.
Version: 1.0.0
Requires at least: 6.6
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: dcode-template
*/

:root {
  --dcode-bg: #050505;
  --dcode-bg-soft: #101010;
  --dcode-surface: rgba(12, 12, 12, 0.9);
  --dcode-surface-strong: #171717;
  --dcode-border: rgba(255, 255, 255, 0.08);
  --dcode-text: #f5f5f5;
  --dcode-text-soft: rgba(245, 245, 245, 0.72);
  --dcode-accent: #c6ff00;
  --dcode-accent-hover: #d4ff3f;
  --dcode-max: 1280px;
  --dcode-radius: 18px;
  --dcode-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top center,
      rgba(229, 9, 20, 0.15),
      transparent 28%
    ),
    linear-gradient(180deg, #0a0a0a 0%, #030303 100%);
  color: var(--dcode-text);
  font-family: "Inter", "Segoe UI", sans-serif;
}

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

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.dcode-site {
  min-height: 100vh;
}

.dcode-container {
  width: min(calc(100% - 32px), var(--dcode-max));
  margin: 0 auto;
}

.dcode-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0;
  min-height: 82px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.78));
  backdrop-filter: blur(16px);
}

.dcode-header .dcode-container {
  position: relative;
}

.dcode-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px 20px;
  border-radius: 0;
  background: transparent;
}

.dcode-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  flex-shrink: 0;
  line-height: 0;
}

.dcode-logo__image {
  width: auto;
  height: auto;
  max-width: 50%;
}

.dcode-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.dcode-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dcode-nav__item,
.dcode-nav .menu-item {
  position: relative;
}

.dcode-nav__link,
.dcode-dropdown__trigger,
.dcode-nav .menu-item > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: var(--dcode-text-soft);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 160ms ease;
}

.dcode-nav__link:hover,
.dcode-dropdown:hover > .dcode-dropdown__trigger,
.dcode-dropdown:focus-within > .dcode-dropdown__trigger,
.dcode-nav .current-menu-item > a,
.dcode-nav .current-menu-parent > a,
.dcode-nav .menu-item > a:hover {
  color: var(--dcode-text);
}

body:not(.home) .dcode-nav__link:hover,
body:not(.home) .dcode-dropdown:hover > .dcode-dropdown__trigger,
body:not(.home) .dcode-dropdown:focus-within > .dcode-dropdown__trigger,
body:not(.home) .dcode-nav .current-menu-item > a,
body:not(.home) .dcode-nav .current-menu-parent > a,
body:not(.home) .dcode-nav .menu-item > a:hover {
  color: var(--dcode-accent);
}

.dcode-dropdown__caret {
  font-size: 0.8rem;
}

.dcode-dropdown__menu,
.dcode-nav .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 260px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--dcode-border);
  border-radius: var(--dcode-radius);
  background: rgba(10, 10, 10, 0.98);
  box-shadow: var(--dcode-shadow);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.dcode-dropdown:hover .dcode-dropdown__menu,
.dcode-dropdown:focus-within .dcode-dropdown__menu,
.dcode-nav .menu-item-has-children:hover > .sub-menu,
.dcode-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dcode-dropdown__menu a,
.dcode-nav .sub-menu a {
  display: block;
  padding: 12px 14px 12px 26px;
  border-radius: 12px;
  color: var(--dcode-text-soft);
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.dcode-nav .sub-menu .menu-item > a {
  position: relative;
}

.dcode-nav .sub-menu .menu-item > a::before {
  content: "\203A";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: currentColor;
  font-size: 1rem;
  line-height: 1;
}

.dcode-dropdown__menu a:hover,
.dcode-nav .sub-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--dcode-text);
}

.dcode-nav .menu-item-has-children > a::after {
  content: "\2304";
  display: inline-block;
  margin-left: 8px;
  font-size: 0.8rem;
}

.dcode-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 220px;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--dcode-accent);
  color: #050505;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    background-color 160ms ease;
}

.dcode-header__cta:hover {
  background: var(--dcode-accent-hover);
  transform: translateY(-1px);
}

.dcode-main {
  min-height: calc(100vh - 110px);
  background: #ffffff;
  color: #111111;
}

.dcode-home {
  padding: 56px 0 96px;
}

.dcode-home__content {
  max-width: 980px;
  margin: 0 auto;
}

.dcode-home__title {
  margin: 0 0 24px;
  color: #111111;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
}

.dcode-home .entry-content {
  color: #2a2a2a;
  font-size: 1.05rem;
  line-height: 1.75;
}

.dcode-home .entry-content > *:first-child {
  margin-top: 0;
}

.dcode-home .entry-content > *:last-child {
  margin-bottom: 0;
}

.dcode-homepage-main {
  background:
    radial-gradient(
      circle at top left,
      rgba(198, 255, 0, 0.14),
      transparent 22%
    ),
    radial-gradient(
      circle at top right,
      rgba(229, 9, 20, 0.12),
      transparent 20%
    ),
    linear-gradient(180deg, #090909 0%, #040404 100%);
  color: var(--dcode-text);
}

.dcode-homepage-hero,
.dcode-homepage-section {
  padding: 88px 0;
}

.dcode-homepage-hero {
  padding-top: 104px;
}

.dcode-homepage-hero__grid,
.dcode-homepage-about,
.dcode-homepage-testimonials__top,
.dcode-homepage-cta {
  display: grid;
  gap: 36px;
  align-items: center;
}

.dcode-homepage-hero__grid {
  justify-items: center;
}

.dcode-homepage-hero__copy {
  width: 100%;
  max-width: 980px;
  text-align: center;
}

.dcode-homepage-hero__copy .dcode-section-eyebrow {
  justify-content: center;
}

.dcode-homepage-hero__title,
.dcode-homepage-section__intro h2,
.dcode-homepage-cta h2 {
  margin: 0;
  color: var(--dcode-text);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.dcode-homepage-hero__title {
  max-width: none;
  font-size: clamp(3rem, 6.4vw, 5.6rem);
}

.dcode-homepage-hero__lead,
.dcode-homepage-section__intro p,
.dcode-homepage-card p,
.dcode-homepage-service-card p,
.dcode-homepage-testimonial p,
.dcode-homepage-cta p,
.dcode-homepage-stat span {
  color: var(--dcode-text-soft);
  line-height: 1.8;
}

.dcode-homepage-hero__lead {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 1.06rem;
  margin-left: auto;
  margin-right: auto;
}

.dcode-homepage-hero__actions,
.dcode-homepage-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.dcode-homepage-hero__actions {
  justify-content: center;
}

.dcode-homepage-about__box,
.dcode-homepage-rating,
.dcode-homepage-stat,
.dcode-homepage-card,
.dcode-homepage-service-card,
.dcode-homepage-testimonial,
.dcode-homepage-cta {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--dcode-shadow);
}

.dcode-homepage-section__intro {
  max-width: 820px;
  margin-bottom: 34px;
}

.dcode-homepage-section__intro h2,
.dcode-homepage-cta h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.dcode-homepage-section__intro p {
  margin: 20px 0 0;
}

.dcode-homepage-best,
.dcode-homepage-services,
.dcode-homepage-testimonials {
  display: grid;
  gap: 24px;
}

.dcode-homepage-best {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dcode-homepage-services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dcode-homepage-testimonials {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dcode-homepage-card,
.dcode-homepage-service-card,
.dcode-homepage-testimonial {
  padding: 30px;
}

.dcode-homepage-card h3,
.dcode-homepage-service-card h3,
.dcode-homepage-testimonial h3 {
  margin: 0 0 14px;
  color: var(--dcode-text);
  font-size: 1.4rem;
  line-height: 1.2;
}

.dcode-homepage-section--soft {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.015)
  );
}

.dcode-homepage-about__box {
  padding: 28px;
}

.dcode-homepage-about__label {
  display: block;
  margin-bottom: 18px;
  color: var(--dcode-accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dcode-homepage-points,
.dcode-homepage-service-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dcode-homepage-points li,
.dcode-homepage-service-card__list li {
  position: relative;
  padding-left: 22px;
  color: var(--dcode-text);
  line-height: 1.75;
}

.dcode-homepage-points li + li,
.dcode-homepage-service-card__list li + li {
  margin-top: 10px;
}

.dcode-homepage-points li::before,
.dcode-homepage-service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dcode-accent);
}

.dcode-homepage-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.dcode-homepage-stat {
  padding: 30px;
}

.dcode-homepage-stat strong,
.dcode-homepage-rating strong {
  display: block;
  margin-bottom: 10px;
  color: var(--dcode-text);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
}

.dcode-homepage-service-card__number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--dcode-accent);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.dcode-homepage-service-card__list {
  margin-top: 18px;
}

.dcode-homepage-rating {
  padding: 26px 28px;
  justify-self: end;
  text-align: left;
}

.dcode-homepage-testimonial p,
.dcode-homepage-testimonial h3 {
  margin: 0;
}

.dcode-homepage-testimonial h3 {
  margin-top: 18px;
  color: var(--dcode-accent);
  font-size: 1rem;
}

.dcode-homepage-section--cta {
  padding-bottom: 110px;
}

.dcode-homepage-cta {
  padding: 34px;
}

.dcode-home-main {
  background:
    radial-gradient(
      circle at top left,
      rgba(198, 255, 0, 0.12),
      transparent 22%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(229, 9, 20, 0.12),
      transparent 24%
    ),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  color: var(--dcode-text);
}

.dcode-home-portfolio {
  padding: 96px 0 86px;
}

.dcode-home-portfolio__intro {
  display: block;
  margin-bottom: 40px;
  text-align: center;
}

.dcode-home-portfolio__intro .dcode-section-eyebrow {
  justify-content: center;
  margin-inline: auto;
}

.dcode-home-portfolio__title {
  margin: 0;
  max-width: none;
  color: var(--dcode-text);
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.dcode-home-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 34px;
}

.dcode-portfolio-card {
  min-width: 0;
  grid-column: span 4;
}

.dcode-portfolio-reveal-enabled .dcode-portfolio-card--reveal {
  opacity: 0;
  transform: translate3d(0, 56px, 0);
  filter: blur(10px);
  transition:
    opacity 300ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 300ms ease;
  will-change: opacity, transform, filter;
}

.dcode-portfolio-reveal-enabled .dcode-portfolio-card--reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.dcode-portfolio-card--wide {
  grid-column: span 8;
}

.dcode-portfolio-card__link {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border: 1px solid var(--dcode-border);
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--dcode-shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.dcode-portfolio-card__link:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 255, 0, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.dcode-portfolio-card__visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  isolation: isolate;
  min-height: 300px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(198, 255, 0, 0.12), transparent 45%),
    radial-gradient(
      circle at bottom left,
      rgba(255, 255, 255, 0.08),
      transparent 26%
    ),
    linear-gradient(180deg, #171717 0%, #0d0d0d 100%);
}

.dcode-portfolio-card--wide .dcode-portfolio-card__visual {
  min-height: 360px;
}

.dcode-portfolio-card:nth-child(2) .dcode-portfolio-card__visual {
  background:
    linear-gradient(145deg, rgba(229, 9, 20, 0.16), transparent 45%),
    radial-gradient(
      circle at bottom left,
      rgba(255, 255, 255, 0.08),
      transparent 26%
    ),
    linear-gradient(180deg, #171717 0%, #0d0d0d 100%);
}

.dcode-portfolio-card:nth-child(3) .dcode-portfolio-card__visual {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 45%),
    radial-gradient(
      circle at bottom left,
      rgba(198, 255, 0, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #171717 0%, #0d0d0d 100%);
}

.dcode-portfolio-card:nth-child(4) .dcode-portfolio-card__visual {
  background:
    linear-gradient(145deg, rgba(198, 255, 0, 0.12), transparent 45%),
    radial-gradient(
      circle at bottom left,
      rgba(229, 9, 20, 0.12),
      transparent 24%
    ),
    linear-gradient(180deg, #171717 0%, #0d0d0d 100%);
}

.dcode-portfolio-card__visual--has-image {
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.08) 0%,
      rgba(10, 10, 10, 0.52) 100%
    ),
    linear-gradient(145deg, rgba(198, 255, 0, 0.12), transparent 45%),
    radial-gradient(
      circle at bottom left,
      rgba(255, 255, 255, 0.08),
      transparent 26%
    ),
    var(--dcode-portfolio-image) center / cover no-repeat;
}

.dcode-portfolio-card:nth-child(2) .dcode-portfolio-card__visual--has-image {
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.08) 0%,
      rgba(10, 10, 10, 0.52) 100%
    ),
    linear-gradient(145deg, rgba(229, 9, 20, 0.16), transparent 45%),
    radial-gradient(
      circle at bottom left,
      rgba(255, 255, 255, 0.08),
      transparent 26%
    ),
    var(--dcode-portfolio-image) center / cover no-repeat;
}

.dcode-portfolio-card:nth-child(3) .dcode-portfolio-card__visual--has-image {
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.08) 0%,
      rgba(10, 10, 10, 0.52) 100%
    ),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 45%),
    radial-gradient(
      circle at bottom left,
      rgba(198, 255, 0, 0.08),
      transparent 24%
    ),
    var(--dcode-portfolio-image) center / cover no-repeat;
}

.dcode-portfolio-card:nth-child(4) .dcode-portfolio-card__visual--has-image {
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.08) 0%,
      rgba(10, 10, 10, 0.52) 100%
    ),
    linear-gradient(145deg, rgba(198, 255, 0, 0.12), transparent 45%),
    radial-gradient(
      circle at bottom left,
      rgba(229, 9, 20, 0.12),
      transparent 24%
    ),
    var(--dcode-portfolio-image) center / cover no-repeat;
}

.dcode-portfolio-card__visual::after {
  content: "";
  position: absolute;
  inset: auto 28px 28px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  filter: blur(2px);
  z-index: 0;
}

.dcode-portfolio-card__index {
  color: rgba(255, 255, 255, 0.18);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.dcode-portfolio-card__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--dcode-text);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dcode-portfolio-card__content {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  gap: 18px;
  padding: 30px 32px 34px;
  min-height: 320px;
}

.dcode-portfolio-card--wide .dcode-portfolio-card__content {
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  grid-template-rows: auto auto 1fr;
  align-items: end;
  gap: 24px 36px;
  min-height: 0;
}

.dcode-portfolio-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dcode-portfolio-card__content h2 {
  margin: 0;
  color: var(--dcode-text);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.dcode-portfolio-card__content p {
  margin: 0;
  color: var(--dcode-text-soft);
  font-size: 0.98rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dcode-portfolio-card--wide .dcode-portfolio-card__meta,
.dcode-portfolio-card--wide .dcode-portfolio-card__content h2 {
  grid-column: 1 / -1;
}

.dcode-portfolio-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--dcode-accent);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 100%;
}

.dcode-portfolio-card--wide .dcode-portfolio-card__cta {
  justify-self: start;
  align-self: end;
}

@media (prefers-reduced-motion: reduce) {
  .dcode-portfolio-reveal-enabled .dcode-portfolio-card--reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

.dcode-home-content {
  padding-top: 0;
  background: transparent;
  color: var(--dcode-text);
}

.dcode-home-content .dcode-home__title,
.dcode-home-content .entry-content {
  color: var(--dcode-text);
}

.dcode-home-content .entry-content {
  color: var(--dcode-text-soft);
}

.dcode-about-main {
  background:
    radial-gradient(
      circle at top left,
      rgba(198, 255, 0, 0.16),
      transparent 24%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(229, 9, 20, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, #0b0b0b 0%, #050505 100%);
  color: var(--dcode-text);
}

.dcode-about-hero,
.dcode-about-section {
  padding: 88px 0;
}

.dcode-about-hero {
  position: relative;
  overflow: hidden;
  padding-top: 104px;
}

.dcode-about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 40px;
  align-items: start;
}

.dcode-about-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: none;
  text-align: center;
}

.dcode-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--dcode-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dcode-section-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.dcode-about-hero__title,
.dcode-about-section__intro h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.dcode-about-hero__title {
  max-width: none;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.dcode-about-hero__lead,
.dcode-about-section__intro p,
.dcode-about-card p,
.dcode-team-card__focus,
.dcode-about-stat span {
  color: var(--dcode-text-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}

.dcode-about-hero__lead {
  max-width: 760px;
  margin: 28px 0 0;
}

.dcode-about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}

.dcode-about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.dcode-about-button:hover {
  transform: translateY(-1px);
}

.dcode-about-button--primary {
  background: var(--dcode-accent);
  color: #050505;
}

.dcode-about-button--secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--dcode-text);
}

.dcode-about-card,
.dcode-team-card {
  border: 1px solid var(--dcode-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--dcode-shadow);
}

.dcode-about-section--soft {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.015)
  );
}

.dcode-about-section__intro {
  max-width: 820px;
  margin-bottom: 42px;
}

.dcode-about-section__intro h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.dcode-about-section__intro p {
  margin: 22px 0 0;
}

.dcode-about-grid {
  display: grid;
  gap: 24px;
}

.dcode-about-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dcode-about-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dcode-about-grid--services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dcode-about-card {
  padding: 30px;
}

.dcode-about-card h3,
.dcode-team-card__content h3 {
  margin: 0 0 14px;
  color: var(--dcode-text);
  font-size: 1.4rem;
  line-height: 1.2;
}

.dcode-about-card p,
.dcode-team-card__focus {
  margin: 0;
}

.dcode-about-card--feature {
  position: relative;
  overflow: hidden;
}

.dcode-about-section--team {
  padding-bottom: 110px;
}

.dcode-contact-main {
  background:
    radial-gradient(
      circle at top left,
      rgba(198, 255, 0, 0.12),
      transparent 22%
    ),
    radial-gradient(
      circle at top right,
      rgba(229, 9, 20, 0.14),
      transparent 22%
    ),
    linear-gradient(180deg, #0b0b0d 0%, #050505 100%);
  color: var(--dcode-text);
}

.dcode-career-main {
  background:
    radial-gradient(
      circle at top center,
      rgba(198, 255, 0, 0.12),
      transparent 20%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(229, 9, 20, 0.1),
      transparent 26%
    ),
    linear-gradient(180deg, #0b0b0d 0%, #040404 100%);
  color: var(--dcode-text);
}

.dcode-career-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 96px;
}

.dcode-career-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 28%,
      rgba(198, 255, 0, 0.14),
      transparent 20%
    ),
    radial-gradient(
      circle at 82% 12%,
      rgba(255, 255, 255, 0.08),
      transparent 16%
    );
  pointer-events: none;
}

.dcode-career-hero__copy {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 46px 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(8, 8, 8, 0.68);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  text-align: center;
  backdrop-filter: blur(12px);
}

.dcode-career-hero__copy .dcode-section-eyebrow {
  justify-content: center;
}

.dcode-career-hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.dcode-career-hero__lead {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--dcode-text-soft);
  font-size: 1rem;
  line-height: 1.78;
}

.dcode-career-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.dcode-contact-hero,
.dcode-contact-section {
  padding: 64px 0;
}

.dcode-contact-hero {
  padding-top: 84px;
}

.dcode-contact-hero__copy {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.dcode-contact-hero__copy .dcode-section-eyebrow {
  justify-content: center;
}

.dcode-contact-hero__title,
.dcode-contact-section__intro h2,
.dcode-contact-form-shell h2 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.dcode-contact-hero__title {
  font-size: clamp(2.2rem, 4.3vw, 3.7rem);
}

.dcode-contact-hero__lead,
.dcode-contact-section__intro p,
.dcode-contact-card p,
.dcode-contact-process__list p,
.dcode-contact-form-shell > p {
  color: var(--dcode-text-soft);
  line-height: 1.72;
  font-size: 0.94rem;
}

.dcode-contact-hero__lead {
  max-width: 780px;
  margin: 18px auto 0;
  font-size: 0.92rem;
}

.dcode-contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.dcode-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 22px;
  align-items: start;
}

.dcode-contact-copy {
  display: grid;
  gap: 20px;
}

.dcode-contact-section__intro {
  max-width: 760px;
}

.dcode-contact-section__intro h2,
.dcode-contact-form-shell h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
}

.dcode-contact-section__intro p,
.dcode-contact-form-shell > p {
  margin: 14px 0 0;
}

.dcode-contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dcode-contact-card,
.dcode-contact-process,
.dcode-contact-form-shell {
  border: 1px solid var(--dcode-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--dcode-shadow);
}

.dcode-contact-card {
  padding: 20px;
}

.dcode-contact-card__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--dcode-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dcode-contact-card h3,
.dcode-contact-process h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
  line-height: 1.2;
  color: var(--dcode-text);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.dcode-contact-card p {
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.dcode-contact-card__link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--dcode-text);
  font-size: 0.9rem;
  font-weight: 700;
}

.dcode-contact-card__link:hover {
  color: var(--dcode-accent);
}

.dcode-contact-process {
  padding: 26px;
}

.dcode-contact-process__list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.dcode-contact-process__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.dcode-contact-process__list li + li {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dcode-contact-process__list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(198, 255, 0, 0.12);
  color: var(--dcode-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.dcode-contact-process__list p {
  margin: 8px 0 0;
}

.dcode-contact-form-shell {
  padding: 24px;
  color: var(--dcode-text);
}

.dcode-contact-form-shell__form {
  margin-top: 18px;
}

.dcode-contact-form-shell__placeholder {
  padding: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.dcode-contact-form-shell__placeholder strong {
  display: block;
  margin-bottom: 10px;
  color: var(--dcode-text);
}

.dcode-contact-form-shell__placeholder p {
  margin: 0;
  color: var(--dcode-text-soft);
  line-height: 1.7;
}

.dcode-contact-form-shell .wpforms-container {
  margin: 0;
  color: var(--dcode-text);
}

.dcode-contact-form-shell .wpforms-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.dcode-contact-form-shell .wpforms-form .wpforms-field-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dcode-contact-form-shell .wpforms-form .wpforms-field-medium,
.dcode-contact-form-shell .wpforms-form .wpforms-field-large {
  width: 100% !important;
  max-width: none !important;
}

.dcode-contact-form-shell
  .wpforms-form
  .wpforms-field:has(> input[tabindex="-1"][aria-hidden="true"]),
.dcode-contact-form-shell
  .wpforms-form
  .wpforms-field:has(> input[aria-hidden="true"][style*="visibility: hidden"]),
.dcode-contact-form-shell .wpforms-form #wpforms-58-field_5-container {
  display: none !important;
}

.dcode-contact-form-shell .wpforms-form .wpforms-field {
  padding: 0;
  width: 100%;
  margin-bottom: 0;
}

.dcode-contact-form-shell .wpforms-form label.wpforms-field-label,
.dcode-contact-form-shell .wpforms-form legend.wpforms-field-label {
  display: block;
  margin: 0 0 10px;
  color: var(--dcode-text);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.dcode-contact-form-shell .wpforms-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.dcode-contact-form-shell .wpforms-form .wpforms-field-name .wpforms-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 0;
  width: 100%;
}

.dcode-contact-form-shell
  .wpforms-form
  .wpforms-field-name
  .wpforms-field-row-block {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.dcode-contact-form-shell .wpforms-form .wpforms-field-sublabel {
  display: block;
  margin-top: 8px;
  color: rgba(245, 245, 245, 0.72);
  font-size: 0.8rem;
  line-height: 1.25;
}

.dcode-contact-form-shell .wpforms-form,
.dcode-contact-form-shell .wpforms-form *:not(button) {
  color: var(--dcode-text);
}

.dcode-contact-form-shell .wpforms-form .wpforms-required-label,
.dcode-contact-form-shell .wpforms-form label.wpforms-error,
.dcode-contact-form-shell .wpforms-form em.wpforms-error {
  color: #ff4d4f;
}

.dcode-contact-form-shell .wpforms-form input[type="text"],
.dcode-contact-form-shell .wpforms-form input[type="email"],
.dcode-contact-form-shell .wpforms-form input[type="tel"],
.dcode-contact-form-shell .wpforms-form input[type="number"],
.dcode-contact-form-shell .wpforms-form textarea,
.dcode-contact-form-shell .wpforms-form select {
  display: block;
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 22, 0.96),
    rgba(11, 11, 15, 0.98)
  );
  color: var(--dcode-text);
  padding: 14px 16px;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.5;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.dcode-contact-form-shell .wpforms-form input[type="text"],
.dcode-contact-form-shell .wpforms-form input[type="email"],
.dcode-contact-form-shell .wpforms-form input[type="tel"],
.dcode-contact-form-shell .wpforms-form input[type="number"],
.dcode-contact-form-shell .wpforms-form textarea {
  -webkit-text-fill-color: var(--dcode-text) !important;
  caret-color: var(--dcode-text) !important;
}

.dcode-contact-form-shell .wpforms-form textarea {
  min-height: 168px;
  resize: vertical;
}

.dcode-contact-form-shell .wpforms-form .wpforms-field-email,
.dcode-contact-form-shell .wpforms-form .wpforms-field-textarea,
.dcode-contact-form-shell .wpforms-form .wpforms-field-text,
.dcode-contact-form-shell .wpforms-form .wpforms-field-name {
  width: 100%;
}

.dcode-contact-form-shell .wpforms-form #wpforms-58-field_6-container {
  margin-bottom: -6px;
}

.dcode-contact-form-shell
  .wpforms-form
  #wpforms-58-field_1-container
  legend.wpforms-field-label,
.dcode-contact-form-shell
  .wpforms-form
  #wpforms-58-field_2-container
  > .wpforms-field-label,
.dcode-contact-form-shell
  .wpforms-form
  #wpforms-58-field_4-container
  > .wpforms-field-label,
.dcode-contact-form-shell
  .wpforms-form
  #wpforms-58-field_6-container
  > .wpforms-field-label,
.dcode-contact-form-shell .wpforms-form .wpforms-field-label:empty,
.dcode-contact-form-shell
  .wpforms-form
  .wpforms-field-name
  legend.wpforms-field-label:empty {
  display: none;
}

.dcode-contact-form-shell
  .wpforms-form
  .wpforms-field-name
  .wpforms-field-sublabel {
  display: none;
}

.dcode-contact-form-shell
  .wpforms-form
  #wpforms-58-field_3-container
  .wpforms-field-label {
  display: none;
}

.dcode-contact-form-shell .wpforms-form select option {
  color: var(--dcode-text);
  background: #111111;
}

.dcode-contact-form-shell .wpforms-form input::placeholder,
.dcode-contact-form-shell .wpforms-form textarea::placeholder {
  color: rgba(245, 245, 245, 0.36);
}

.dcode-contact-form-shell .wpforms-form input:focus,
.dcode-contact-form-shell .wpforms-form textarea:focus,
.dcode-contact-form-shell .wpforms-form select:focus {
  border-color: rgba(198, 255, 0, 0.56);
  box-shadow: 0 0 0 3px rgba(198, 255, 0, 0.1);
  color: var(--dcode-text) !important;
  -webkit-text-fill-color: var(--dcode-text) !important;
  outline: none;
}

.dcode-contact-form-shell .wpforms-form input:-webkit-autofill,
.dcode-contact-form-shell .wpforms-form input:-webkit-autofill:hover,
.dcode-contact-form-shell .wpforms-form input:-webkit-autofill:focus,
.dcode-contact-form-shell .wpforms-form textarea:-webkit-autofill,
.dcode-contact-form-shell .wpforms-form textarea:-webkit-autofill:hover,
.dcode-contact-form-shell .wpforms-form textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--dcode-text) !important;
  caret-color: var(--dcode-text) !important;
  -webkit-box-shadow: 0 0 0 1000px rgba(14, 14, 18, 0.96) inset !important;
  box-shadow: 0 0 0 1000px rgba(14, 14, 18, 0.96) inset !important;
  transition: background-color 9999s ease-in-out 0s;
}

.dcode-contact-form-shell .wpforms-form input.wpforms-error,
.dcode-contact-form-shell .wpforms-form textarea.wpforms-error,
.dcode-contact-form-shell .wpforms-form select.wpforms-error {
  border-color: rgba(255, 77, 79, 0.82);
  box-shadow: 0 0 0 3px rgba(255, 77, 79, 0.12);
}

.dcode-contact-form-shell .wpforms-form .wpforms-submit-container {
  padding: 0;
  margin-top: 6px;
  width: 100%;
}

.dcode-contact-form-shell .wpforms-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0 !important;
  border-radius: 999px;
  background: var(--dcode-accent) !important;
  background-color: var(--dcode-accent) !important;
  color: #050505 !important;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: none !important;
  border: 1px solid transparent !important;
  transform: none !important;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.dcode-contact-form-shell .wpforms-form .wpforms-submit-spinner {
  margin-left: 12px;
  vertical-align: middle;
}

.dcode-contact-form-shell .wpforms-form .wpforms-error-noscript,
.dcode-contact-form-shell .wpforms-form #wpforms-error-noscript {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 77, 79, 0.18);
  background: rgba(255, 77, 79, 0.08);
  color: var(--dcode-text);
  font-size: 0.88rem;
  line-height: 1.5;
}

.dcode-contact-form-shell .wpforms-form button[type="submit"]:hover {
  background: var(--dcode-accent-hover) !important;
  background-color: var(--dcode-accent-hover) !important;
  transform: none !important;
  box-shadow:
    0 0 0 1px rgba(198, 255, 0, 0.18),
    0 10px 24px rgba(198, 255, 0, 0.08) !important;
}

.dcode-contact-form-shell .wpforms-form button[type="submit"]:focus,
.dcode-contact-form-shell .wpforms-form button[type="submit"]:active {
  transform: none !important;
  box-shadow: 0 0 0 3px rgba(198, 255, 0, 0.16) !important;
}

.dcode-contact-form-shell .wpforms-form input[type="submit"],
.dcode-contact-form-shell .wpforms-form .wpforms-submit,
.dcode-contact-form-shell
  .wpforms-form
  .wpforms-submit-spinner
  ~ button[type="submit"] {
  background: var(--dcode-accent) !important;
  background-color: var(--dcode-accent) !important;
  color: #050505 !important;
  border-color: transparent !important;
}

.dcode-contact-form-shell .wpforms-form input[type="submit"]:hover,
.dcode-contact-form-shell .wpforms-form .wpforms-submit:hover {
  background: var(--dcode-accent-hover) !important;
  background-color: var(--dcode-accent-hover) !important;
  transform: none !important;
}

.dcode-contact-form-shell .wpforms-form .wpforms-confirmation-container,
.dcode-contact-form-shell .wpforms-form .wpforms-confirmation-container-full,
.dcode-contact-form-shell .wpforms-form .wpforms-error-container {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--dcode-text);
}

.dcode-contact-form-shell .wpforms-confirmation-container,
.dcode-contact-form-shell .wpforms-confirmation-container-full {
  position: relative;
  padding: 20px 22px 20px 56px;
  border: 1px solid rgba(198, 255, 0, 0.24);
  background: linear-gradient(
    180deg,
    rgba(198, 255, 0, 0.1),
    rgba(255, 255, 255, 0.03)
  );
  color: var(--dcode-text);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.dcode-contact-form-shell .wpforms-confirmation-container::before,
.dcode-contact-form-shell .wpforms-confirmation-container-full::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--dcode-accent);
  box-shadow: 0 0 0 6px rgba(198, 255, 0, 0.12);
}

.dcode-contact-form-shell .wpforms-confirmation-container p,
.dcode-contact-form-shell .wpforms-confirmation-container-full p {
  margin: 0;
  color: var(--dcode-text);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.65;
}

.dcode-contact-form-shell .wpforms-field-phone-input-container {
  position: relative;
}

.dcode-contact-form-shell .wpforms-field-phone-country-container {
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

.dcode-contact-form-shell .dcode-smart-phone {
  display: flex;
  align-items: stretch;
  min-height: 54px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 22, 0.96),
    rgba(11, 11, 15, 0.98)
  );
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.dcode-contact-form-shell .dcode-smart-phone__select,
.dcode-contact-form-shell .dcode-smart-phone__input {
  margin: 0 !important;
}

.dcode-contact-form-shell .dcode-smart-phone__picker {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.dcode-contact-form-shell .dcode-smart-phone__toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  min-height: 52px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--dcode-text);
  padding: 0 10px 0 16px;
  cursor: pointer;
  transition: opacity 160ms ease;
}

.dcode-contact-form-shell .dcode-smart-phone__toggle:focus {
  box-shadow: none;
  outline: none;
}

.dcode-contact-form-shell .dcode-smart-phone__toggle-flag,
.dcode-contact-form-shell .dcode-smart-phone__option-flag {
  font-size: 0.9rem;
  line-height: 1;
}

.dcode-contact-form-shell .dcode-smart-phone__toggle-dial {
  margin-left: 8px;
  color: rgba(245, 245, 245, 0.78);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.dcode-contact-form-shell .dcode-smart-phone__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 25;
  display: none;
  width: min(340px, calc(100vw - 48px));
  max-height: 280px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(10, 10, 14, 0.98);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

.dcode-contact-form-shell
  .dcode-smart-phone__picker.is-open
  .dcode-smart-phone__menu {
  display: block;
}

.dcode-contact-form-shell .dcode-smart-phone__option {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--dcode-text);
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
}

.dcode-contact-form-shell .dcode-smart-phone__option:hover,
.dcode-contact-form-shell .dcode-smart-phone__option.is-active {
  background: rgba(255, 255, 255, 0.06);
}

.dcode-contact-form-shell .dcode-smart-phone__option-label {
  min-width: 0;
  font-size: 0.84rem;
  line-height: 1.3;
}

.dcode-contact-form-shell .dcode-smart-phone__option-dial {
  color: rgba(245, 245, 245, 0.58);
  font-size: 0.78rem;
  white-space: nowrap;
}

.dcode-contact-form-shell .dcode-smart-phone__select {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0 !important;
}

.dcode-contact-form-shell .dcode-smart-phone__input {
  flex: 1 1 auto;
  width: auto !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  min-height: 52px !important;
  padding: 14px 16px 14px 0 !important;
}

.dcode-contact-form-shell .dcode-smart-phone:focus-within {
  border-color: rgba(198, 255, 0, 0.56);
  box-shadow: 0 0 0 3px rgba(198, 255, 0, 0.12);
}

.dcode-contact-form-shell .dcode-smart-phone .dcode-smart-phone__picker::after {
  content: "";
  width: 1px;
  height: 18px;
  margin-right: 10px;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 640px) {
  .dcode-contact-form-shell
    .wpforms-form
    .wpforms-field-name
    .wpforms-field-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .dcode-contact-form-shell .dcode-smart-phone {
    display: flex;
  }
}

.dcode-services-main {
  background:
    radial-gradient(
      circle at top left,
      rgba(198, 255, 0, 0.16),
      transparent 24%
    ),
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.08),
      transparent 20%
    ),
    linear-gradient(180deg, #0b0b0b 0%, #050505 100%);
  color: var(--dcode-text);
}

.dcode-dev-main {
  background:
    radial-gradient(
      circle at top left,
      rgba(198, 255, 0, 0.14),
      transparent 20%
    ),
    radial-gradient(
      circle at top right,
      rgba(229, 9, 20, 0.12),
      transparent 22%
    ),
    linear-gradient(180deg, #0b0b0d 0%, #040404 100%);
  color: var(--dcode-text);
}

.dcode-dev-hero {
  position: relative;
}

.dcode-services-hero,
.dcode-services-section {
  padding: 88px 0;
}

.dcode-services-hero {
  padding-top: 104px;
}

.dcode-services-list {
  display: grid;
  gap: 34px;
}

.dcode-services-item {
  padding: 0 0 34px;
  scroll-margin-top: 132px;
}

.dcode-services-reveal-enabled .dcode-services-item--reveal {
  opacity: 0;
  transform: translate3d(0, 56px, 0);
  filter: blur(10px);
  transition:
    opacity 300ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 300ms ease;
  will-change: opacity, transform, filter;
}

.dcode-services-reveal-enabled .dcode-services-item--reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.dcode-services-item__layout {
  display: block;
}

.dcode-services-item__content {
  min-width: 0;
}

.dcode-services-item .dcode-section-eyebrow {
  margin-bottom: 16px;
}

.dcode-services-item p {
  margin: 0;
  max-width: 760px;
  color: var(--dcode-text-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}

.dcode-services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 42px;
  align-items: start;
}

.dcode-services-layout--no-visual {
  grid-template-columns: minmax(0, 1fr);
}

.dcode-services-layout--reverse .dcode-services-layout__copy {
  order: 2;
}

.dcode-services-layout--reverse .dcode-services-layout__visual {
  order: 1;
}

.dcode-services-layout__copy {
  min-width: 0;
}

.dcode-services-layout__title {
  margin: 0;
  max-width: 680px;
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  line-height: 1.14;
  text-wrap: balance;
}

.dcode-services-layout__lead {
  margin: 18px 0 0;
  max-width: 620px;
  color: var(--dcode-text-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

.dcode-services-layout__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 22px;
  max-width: 520px;
}

.dcode-services-layout__item {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(14px);
}

.dcode-services-layout__item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 4px;
  font-size: 0.92rem;
  line-height: 1.4;
}

.dcode-services-layout__item p {
  margin: 0;
  max-width: none;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.5;
}

.dcode-services-layout__item--text-only p {
  padding-left: 0;
  color: var(--dcode-text);
  font-size: 0.88rem;
  line-height: 1.6;
}

.dcode-services-layout__item-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--dcode-accent);
}

.dcode-services-layout__visual {
  position: relative;
  display: grid;
  gap: 18px;
}

.dcode-services-layout__image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(
      circle at top left,
      rgba(198, 255, 0, 0.14),
      transparent 26%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02)
    );
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.dcode-services-layout__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dcode-services-layout__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.dcode-services-layout__highlight {
  min-height: 96px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.dcode-services-layout__highlight-value {
  display: block;
  margin-bottom: 10px;
  color: var(--dcode-accent);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

.dcode-services-layout__highlight-label {
  display: block;
  color: var(--dcode-text);
  font-size: 0.82rem;
  line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
  .dcode-services-reveal-enabled .dcode-services-item--reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .dcode-services-layout__highlights {
    grid-template-columns: 1fr;
  }

  .dcode-services-layout__highlight {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .dcode-services-layout {
    grid-template-columns: 1fr;
  }

  .dcode-services-layout--reverse .dcode-services-layout__copy,
  .dcode-services-layout--reverse .dcode-services-layout__visual {
    order: initial;
  }

  .dcode-services-layout__items,
  .dcode-services-layout__highlights {
    max-width: none;
    grid-template-columns: 1fr;
  }
}

.dcode-about-team {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.dcode-team-card {
  overflow: hidden;
}

.dcode-team-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 4.8;
  overflow: hidden;
  background: #0f0f0f;
}

.dcode-team-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dcode-team-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at top right,
      rgba(198, 255, 0, 0.2),
      transparent 22%
    ),
    linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  color: var(--dcode-text);
}

.dcode-team-card__placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.dcode-team-card__content {
  padding: 26px 26px 30px;
}

.dcode-team-card__role {
  margin: 0 0 14px;
  color: var(--dcode-accent);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dcode-footer {
  position: relative;
  overflow: hidden;
  padding: 34px 0 42px;
  background:
    linear-gradient(
      115deg,
      transparent 0 44%,
      rgba(198, 255, 0, 0.06) 44%,
      transparent 50%
    ),
    linear-gradient(
      115deg,
      transparent 0 68%,
      rgba(198, 255, 0, 0.05) 68%,
      transparent 74%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.94), rgba(4, 4, 4, 0.98));
  color: var(--dcode-text);
}

.dcode-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    transparent 24%
  );
  pointer-events: none;
}

.dcode-footer .dcode-container {
  position: relative;
  z-index: 1;
}

.dcode-footer__bar {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.9fr) minmax(
      280px,
      1fr
    );
  align-items: center;
  gap: 32px;
  padding: 28px 0;
}

.dcode-footer__group {
  min-width: 0;
}

.dcode-footer__group--primary {
  justify-self: start;
}

.dcode-footer__group--brand {
  justify-self: center;
}

.dcode-footer__group--location {
  display: inline-flex;
  align-items: flex-start;
  justify-self: end;
  gap: 14px;
  color: var(--dcode-text-soft);
  font-size: 0.95rem;
}

.dcode-footer__location-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dcode-footer__group--location address,
.dcode-footer__location-copy a {
  font-style: normal;
  color: var(--dcode-text-soft);
}

.dcode-footer__location-copy a:hover {
  color: var(--dcode-accent);
}

.dcode-footer__nav .dcode-nav__list,
.dcode-footer__menu-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dcode-footer__nav .menu-item,
.dcode-footer__menu-list .menu-item {
  list-style: none;
}

.dcode-footer__nav a,
.dcode-footer__menu-list a {
  color: var(--dcode-text-soft);
  font-size: 0.95rem;
  font-weight: 500;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.dcode-footer__nav a:hover,
.dcode-footer__menu-list a:hover,
.dcode-footer__nav .current-menu-item > a,
.dcode-footer__menu-list .current-menu-item > a {
  color: var(--dcode-accent);
}

.dcode-footer__nav .sub-menu,
.dcode-footer__menu-list .sub-menu {
  display: none;
}

.dcode-footer__location-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--dcode-accent);
  flex-shrink: 0;
}

.dcode-footer__location-icon svg {
  width: 18px;
  height: 18px;
}

.dcode-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.dcode-footer__logo .custom-logo-link,
.dcode-footer__logo .custom-logo {
  display: block;
}

.dcode-footer__logo-image,
.dcode-footer__logo .custom-logo {
  width: auto;
  max-width: 170px;
  max-height: 64px;
}

@media (max-width: 1180px) {
  .dcode-header__bar {
    border-radius: 0;
    align-items: center;
    flex-wrap: wrap;
  }

  .dcode-nav {
    order: 3;
    width: 100%;
  }

  .dcode-nav__list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 22px;
  }

  .dcode-footer__bar {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0;
  }

  .dcode-homepage-hero,
  .dcode-homepage-section {
    padding: 72px 0;
  }

  .dcode-homepage-hero__grid,
  .dcode-homepage-about,
  .dcode-homepage-testimonials__top,
  .dcode-homepage-cta,
  .dcode-homepage-best,
  .dcode-homepage-testimonials,
  .dcode-homepage-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dcode-about-hero,
  .dcode-about-section {
    padding: 72px 0;
  }

  .dcode-contact-hero,
  .dcode-contact-section {
    padding: 72px 0;
  }

  .dcode-contact-layout,
  .dcode-contact-cards {
    grid-template-columns: 1fr;
  }

  .dcode-home-portfolio {
    padding: 80px 0 72px;
  }

  .dcode-home-portfolio__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dcode-portfolio-card,
  .dcode-portfolio-card--wide {
    grid-column: span 1;
  }

  .dcode-portfolio-card--wide .dcode-portfolio-card__content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr auto;
    gap: 12px;
    min-height: 320px;
  }

  .dcode-about-grid--three,
  .dcode-about-grid--services,
  .dcode-about-team {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dcode-footer__group--primary,
  .dcode-footer__group--brand,
  .dcode-footer__group--location {
    justify-self: center;
  }

  .dcode-footer__nav .dcode-nav__list,
  .dcode-footer__menu-list {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .dcode-header {
    padding: 0;
  }

  .dcode-header__bar {
    min-height: auto;
    padding: 14px 16px;
    gap: 14px;
  }

  .dcode-logo,
  .dcode-nav,
  .dcode-header__cta {
    width: 100%;
  }

  .dcode-logo {
    justify-content: center;
  }

  .dcode-nav__list {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .dcode-nav .menu-item,
  .dcode-nav .menu-item > a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .dcode-header__cta {
    display: flex;
    justify-content: center;
  }

  .dcode-homepage-hero,
  .dcode-homepage-section {
    padding: 56px 0;
  }

  .dcode-homepage-hero {
    padding-top: 72px;
  }

  .dcode-homepage-hero__grid,
  .dcode-homepage-about,
  .dcode-homepage-testimonials__top,
  .dcode-homepage-cta,
  .dcode-homepage-best,
  .dcode-homepage-services,
  .dcode-homepage-testimonials,
  .dcode-homepage-stats {
    grid-template-columns: 1fr;
  }

  .dcode-homepage-hero__title {
    max-width: none;
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .dcode-homepage-about__box,
  .dcode-homepage-rating,
  .dcode-homepage-stat,
  .dcode-homepage-card,
  .dcode-homepage-service-card,
  .dcode-homepage-testimonial,
  .dcode-homepage-cta {
    padding: 24px;
  }

  .dcode-homepage-hero__actions,
  .dcode-homepage-cta__actions {
    flex-direction: column;
  }

  .dcode-homepage-hero__actions .dcode-about-button,
  .dcode-homepage-cta__actions .dcode-about-button {
    width: 100%;
  }

  .dcode-about-hero {
    padding-top: 72px;
  }

  .dcode-career-hero,
  .dcode-contact-hero,
  .dcode-contact-section {
    padding: 56px 0;
  }

  .dcode-career-hero {
    padding-top: 72px;
  }

  .dcode-career-hero__copy {
    padding: 28px 24px;
  }

  .dcode-career-hero__title {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .dcode-career-hero__actions {
    flex-direction: column;
  }

  .dcode-career-hero__actions .dcode-about-button {
    width: 100%;
  }

  .dcode-contact-hero {
    padding-top: 72px;
  }

  .dcode-contact-hero__title {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .dcode-contact-hero__actions {
    flex-direction: column;
  }

  .dcode-contact-hero__actions .dcode-about-button {
    width: 100%;
  }

  .dcode-contact-process,
  .dcode-contact-card,
  .dcode-contact-form-shell {
    padding: 24px;
  }

  .dcode-contact-form-shell .wpforms-form button[type="submit"] {
    width: 100%;
  }

  .dcode-home-portfolio {
    padding: 64px 0 56px;
  }

  .dcode-home-portfolio__title {
    max-width: none;
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .dcode-home-portfolio__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .dcode-portfolio-card,
  .dcode-portfolio-card--wide {
    grid-column: auto;
  }

  .dcode-portfolio-card__visual,
  .dcode-portfolio-card--wide .dcode-portfolio-card__visual {
    min-height: 220px;
    padding: 22px;
  }

  .dcode-portfolio-card__content {
    padding: 24px 24px 28px;
    min-height: 0;
  }

  .dcode-portfolio-card__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .dcode-about-hero,
  .dcode-about-section {
    padding: 56px 0;
  }

  .dcode-about-grid--two,
  .dcode-about-grid--three,
  .dcode-about-grid--services,
  .dcode-about-team {
    grid-template-columns: 1fr;
  }

  .dcode-about-card,
  .dcode-team-card__content {
    padding: 24px;
  }

  .dcode-about-hero__title {
    max-width: none;
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .dcode-about-hero__actions {
    flex-direction: column;
  }

  .dcode-about-button {
    width: 100%;
  }

  .dcode-dropdown__menu,
  .dcode-nav .sub-menu {
    position: static;
    left: 0;
    min-width: 100%;
    margin-top: 8px;
    padding: 8px;
    box-shadow: none;
    transform: translateX(0) translateY(8px);
  }

  .dcode-dropdown:hover .dcode-dropdown__menu,
  .dcode-dropdown:focus-within .dcode-dropdown__menu,
  .dcode-nav .menu-item-has-children:hover > .sub-menu,
  .dcode-nav .menu-item-has-children:focus-within > .sub-menu {
    transform: translateX(0) translateY(0);
  }

  .dcode-footer {
    padding: 28px 0 34px;
  }

  .dcode-footer__nav .dcode-nav__list,
  .dcode-footer__menu-list {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .dcode-footer__group--location {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .dcode-footer__location-copy {
    align-items: center;
  }
}
