:root {
  --bg: #070503;
  --bg-2: #120904;
  --surface: rgba(255, 255, 255, .055);
  --surface-2: rgba(255, 255, 255, .09);
  --line: rgba(255, 122, 26, .2);
  --text: #fff7ef;
  --muted: #c8b7a8;
  --accent: #ff7a1a;
  --accent-2: #ffb347;
  --accent-3: #ff4d00;
  --danger: #ff7c7c;
  --shadow: 0 24px 80px rgba(0, 0, 0, .48);
  --glow: 0 0 34px rgba(255, 122, 26, .22);
  --radius: 22px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 40px));
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --space: clamp(64px, 8vw, 116px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(circle at 15% -10%, rgba(255, 122, 26, .2), transparent 32%), radial-gradient(circle at 85% 5%, rgba(255, 179, 71, .12), transparent 28%), linear-gradient(180deg, var(--bg), #030201 70%);
  color: var(--text);
  line-height: 1.65;
}

body.modal-open {
  overflow: hidden;
}

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

img,
svg {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.narrow {
  max-width: 840px;
}

.section-pad {
  padding-block: var(--space);
}

.compact {
  padding-block: 32px;
}

.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .01));
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  background: var(--accent);
  color: #170700;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 5, 3, .72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 5, 3, .9);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  height: 80px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav > a,
.dropdown-toggle {
  color: var(--muted);
  font-weight: 750;
  font-size: 14px;
  background: none;
  border: 0;
  padding: 10px 0;
}

.main-nav > a:hover,
.dropdown-toggle:hover,
.main-nav > a[aria-current=page] {
  color: var(--text);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

.dropdown-panel {
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 280px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(12, 7, 3, .76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(.985);
  transform-origin: top right;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.nav-dropdown.is-open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(14px) scale(1);
}

.dropdown-panel a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 750;
}

.dropdown-panel a:hover {
  background: var(--surface);
  color: var(--text);
}

.language-switcher {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, .035);
  min-width: 78px;
  min-height: 34px;
  cursor: pointer;
  user-select: none;
}

.language-switcher:before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 20px rgba(255, 122, 26, .22);
  transition: transform .22s cubic-bezier(.2, .8, .2, 1);
}

.language-switcher.is-ro:before {
  transform: translateX(100%);
}

.language-switcher button {
  position: relative;
  z-index: 1;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.language-switcher button.is-active {
  color: #170700;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--text);
  border-radius: 4px;
  transition: transform .2s, opacity .2s;
}

.mobile-toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 900;
  letter-spacing: -.01em;
  transition: transform .22s cubic-bezier(.2, .8, .2, 1), box-shadow .22s, border-color .22s, background .22s;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn:active {
  transform: translateY(0) scale(.99);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #170700;
  border-color: transparent;
  box-shadow: var(--glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, .05);
  color: var(--text);
}

.btn-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 900;
  background: transparent;
  border: 0;
  padding: 0;
}

.text-link:after {
  content: "→";
  transition: transform .18s;
}

.text-link:hover:after {
  transform: translateX(4px);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: 50px;
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: .95;
  letter-spacing: -.07em;
  margin: 12px 0 22px;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
}

.lead {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--muted);
  max-width: 760px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 950;
  margin: 0 0 10px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-panel {
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 122, 26, .12), rgba(255, 255, 255, .04));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.hero-panel:before {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--accent), transparent 65%);
  opacity: .28;
  filter: blur(8px);
}

.metric {
  position: absolute;
  left: 30px;
  bottom: 30px;
  right: 30px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(12, 7, 3, .68);
  backdrop-filter: blur(12px);
}

.metric span {
  font-size: 54px;
  font-weight: 950;
  color: var(--accent);
  letter-spacing: -.06em;
}

.metric p {
  margin: 4px 0 0;
  color: var(--muted);
}

.orb {
  position: absolute;
  inset: 60px 46px auto auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, var(--accent) 22%, rgba(255, 179, 71, .48) 48%, transparent 70%);
  box-shadow: 0 0 120px rgba(255, 122, 26, .28);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head h2,
.cta-card h2,
.split-grid h2,
.contact-card h2,
.legal h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.05em;
  margin: 0;
}

.grid {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  gap: 18px;
}

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

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

.service-card,
.project-card,
.testimonial,
.step,
.contact-card,
.contact-form,
.cta-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .035));
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .18);
}

.service-card {
  padding: 24px;
  transition: transform .24s cubic-bezier(.2, .8, .2, 1), border-color .24s, box-shadow .24s;
  will-change: transform;
}

.service-card:hover,
.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 26, .42);
  box-shadow: var(--glow);
}

.service-card h2,
.service-card h3,
.project-card h2,
.project-card h3,
.step h3 {
  line-height: 1.1;
  letter-spacing: -.035em;
}

.service-card p,
.project-card p,
.step p,
.testimonial p,
.contact-card p {
  color: var(--muted);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 122, 26, .13);
  color: var(--accent);
  margin-bottom: 12px;
}

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
}

.logo-strip span {
  color: var(--muted);
}

.logo-strip strong {
  color: var(--text);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .032));
  box-shadow: 0 12px 34px rgba(0, 0, 0, .18);
  transition: transform .22s cubic-bezier(.2, .8, .2, 1), border-color .22s, background .22s;
}

.trust-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 26, .42);
  background: linear-gradient(180deg, rgba(255, 122, 26, .1), rgba(255, 255, 255, .035));
}

.badge-icon {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: rgba(255, 122, 26, .13);
  color: var(--accent);
  font-weight: 950;
}

.trust-badge strong {
  display: block;
  line-height: 1.15;
}

.trust-badge span:last-child {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  margin-top: 2px;
}

.project-card {
  overflow: hidden;
  transition: transform .24s cubic-bezier(.2, .8, .2, 1), border-color .24s, box-shadow .24s;
  will-change: transform;
}

.project-card.is-filtered-out {
  opacity: 0;
  transform: scale(.98);
}

.project-visual {
  height: 180px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 20%, rgba(255, 122, 26, .42), transparent 30%), linear-gradient(135deg, rgba(255, 122, 26, .14), rgba(255, 255, 255, .04));
  transition: transform .3s ease;
}

.project-card:hover .project-visual {
  transform: scale(1.025);
}

.project-visual span {
  font-size: 46px;
  font-weight: 950;
  color: rgba(255, 255, 255, .86);
  letter-spacing: -.08em;
}

.card-body {
  padding: 22px;
}

.tech-line {
  color: var(--accent) !important;
  font-weight: 850;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step {
  padding: 20px;
}

.step span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #170700;
  font-weight: 950;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.testimonial {
  padding: 28px;
}

.testimonial p {
  font-size: 22px;
  color: var(--text);
}

.cta-card {
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
  background: radial-gradient(circle at 50% -10%, rgba(255, 122, 26, .24), transparent 42%), linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
}

.cta-card p {
  color: var(--muted);
  max-width: 740px;
  margin: 12px auto 26px;
}

.split-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.large-copy {
  font-size: 20px;
  color: var(--muted);
  margin: 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding: 16px 16px 16px 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.check-list li:before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 16px;
  color: var(--accent);
  font-weight: 950;
}

.tag-cloud {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag-cloud span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 850;
  color: var(--text);
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 16px;
  margin-top: 12px;
}

.faq-item summary {
  font-weight: 900;
  cursor: pointer;
}

.faq-item p {
  color: var(--muted);
}

.portfolio-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 900;
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--accent);
  color: #170700;
  border-color: transparent;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 300;
}

.modal.is-open {
  display: block;
}

.modal.is-open .modal-panel {
  animation: modalIn .22s cubic-bezier(.2, .8, .2, 1);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.985);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .74);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(920px, calc(100% - 34px));
  max-height: calc(100dvh - 50px);
  overflow: auto;
  margin: 25px auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #100803;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  font-size: 26px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 24px 0;
}

.story-grid section {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.story-grid h3 {
  margin-top: 0;
}

.story-grid p {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: start;
}

.contact-form {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row.full,
.form-status {
  grid-column: 1 / -1;
}

label {
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .05);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

select option {
  background: #100803;
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, .15);
}

.is-invalid {
  border-color: var(--danger) !important;
}

.form-status {
  color: var(--accent);
  font-weight: 800;
  min-height: 24px;
}

.contact-card {
  padding: 28px;
  position: sticky;
  top: 102px;
}

.legal p {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050301;
  padding: 56px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr 1fr 1.25fr;
  gap: 28px;
}

.footer-grid h2 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
}

.footer-grid a {
  display: block;
  color: var(--muted);
  margin: 8px 0;
}

.footer-grid a:hover {
  color: var(--text);
}

.footer-grid p {
  color: var(--muted);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2, .8, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: 10px;
}

@media (max-width: 960px) {
  .mobile-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: 78px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(7, 5, 3, .97);
    box-shadow: var(--shadow);
    max-height: calc(100dvh - 96px);
    overflow: auto;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-dropdown:after {
    display: none;
  }

  .dropdown-panel {
    position: static;
    min-width: 0;
    margin-top: 8px;
    transform: none;
    display: grid;
  }

  .nav-dropdown:not(.is-open) .dropdown-panel {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    height: 0;
    padding: 0;
    border-width: 0;
    overflow: hidden;
  }

  .nav-dropdown.is-open .dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    height: auto;
    padding: 12px;
    border-width: 1px;
    transform: none;
  }

  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 340px;
  }

  .cards-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-head {
    display: block;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    position: static;
  }

  .trust-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 28px);
    --space: clamp(50px, 14vw, 76px);
  }

  .nav-wrap {
    min-height: 70px;
  }

  .main-nav {
    inset: 70px 12px auto 12px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(36px, 11vw, 42px);
    letter-spacing: -.055em;
  }

  .lead {
    font-size: 17px;
  }

  .cards-grid,
  .portfolio-grid,
  .results-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .logo-strip {
    border-radius: 22px;
    justify-content: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel {
    min-height: 280px;
  }

  .metric {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .metric span {
    font-size: 42px;
  }

  .orb {
    width: 120px;
    height: 120px;
    right: 24px;
    top: 46px;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

  .trust-badge {
    padding: 14px;
  }

  .project-visual {
    height: 140px;
  }

  .contact-form {
    padding: 18px;
  }

  .modal-panel {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 24px);
    margin: 12px auto;
    border-radius: 22px;
  }

  .footer-bottom p {
    font-size: 14px;
  }

  .site-header {
    background: rgba(7, 5, 3, .94);
  }
}

@supports (content-visibility: auto) {
  .section-pad {
    content-visibility: auto;
    contain-intrinsic-size: 1px 700px;
  }

  .hero,
  .page-hero,
  .site-footer {
    content-visibility: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* v3 refinements: centered layout, equal rhythm, portfolio imagery, proofs, backgrounds and accessibility helper */
:root {
  --space: clamp(72px, 8vw, 112px);
  --space-sm: clamp(36px, 5vw, 56px);
  --grid-gap: 24px;
  --accent-soft: rgba(255, 122, 26, .14);
}

body {
  background: radial-gradient(circle at 20% 0%, rgba(255, 122, 26, .12), transparent 30%), radial-gradient(circle at 80% 18%, rgba(255, 185, 80, .08), transparent 28%), linear-gradient(180deg, #070503 0%, #0b0805 42%, #050403 100%);
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .55), transparent 78%);
  z-index: -1;
}

.section-pad {
  padding-block: var(--space);
}

.compact {
  padding-block: var(--space-sm);
}

.container.narrow,
.section-head,
.hero-copy,
.page-hero,
.card-body,
.testimonial,
.proof-card,
.service-hero,
.faq-wrap {
  text-align: center;
}

.section-head {
  justify-items: center;
  gap: 16px;
}

.lead {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions,
.portfolio-filters,
.tag-cloud {
  justify-content: center;
}

.cards-grid,
.portfolio-grid,
.process-grid,
.results-grid,
.proof-grid,
.trust-badges {
  gap: var(--grid-gap);
}

.card,
.project-card,
.testimonial,
.proof-card,
.trust-badge,
.faq-item {
  border-color: rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .032));
  box-shadow: 0 18px 54px rgba(0, 0, 0, .24);
}

.proofs-section,
.portfolio-section {
  position: relative;
  overflow: hidden;
}

.proofs-section:before,
.portfolio-section:before {
  content: "";
  position: absolute;
  inset: 18% auto auto 50%;
  width: 520px;
  height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 122, 26, .13), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
}

.proof-card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}

.proof-card:after {
  content: "";
  position: absolute;
  inset: auto 20% 0 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .85;
}

.proof-card strong {
  display: block;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -.05em;
  color: var(--text);
}

.proof-card span {
  display: block;
  color: var(--muted);
  font-weight: 750;
}

.portfolio-note {
  max-width: 820px;
  margin: 18px auto 30px;
  text-align: center;
  color: var(--muted);
}

.project-photo {
  position: relative;
  overflow: hidden;
}

.project-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .55s cubic-bezier(.2, .8, .2, 1), filter .35s ease;
}

.project-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .42));
  pointer-events: none;
}

.project-photo span {
  position: relative;
  z-index: 2;
}

.project-card:hover .project-photo img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.project-photo.image-missing {
  background: radial-gradient(circle at 30% 25%, rgba(255, 122, 26, .3), transparent 32%), linear-gradient(135deg, rgba(255, 122, 26, .24), rgba(255, 255, 255, .04));
}

.filter-btn {
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.filter-btn:hover {
  transform: translateY(-2px);
}

.faq-wrap h2 {
  margin-bottom: 22px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  min-height: 60px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}

.faq-item[open] summary:after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
}

.accessibility-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
}

.accessibility-toggle {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: #170700;
  box-shadow: 0 18px 48px rgba(255, 122, 26, .28);
  font-size: 24px;
  font-weight: 950;
  cursor: pointer;
}

.accessibility-panel {
  position: absolute;
  right: 0;
  bottom: 66px;
  width: min(330px, calc(100vw - 36px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(8, 6, 4, .96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.accessibility-widget.is-open .accessibility-panel {
  transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.accessibility-panel h2 {
  font-size: 18px;
  margin: 0 0 8px;
  text-align: left;
}

.accessibility-panel p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 12px;
  text-align: left;
}

.accessibility-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.accessibility-options button {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  color: var(--text);
  padding: 10px;
  font-weight: 850;
  cursor: pointer;
}

.accessibility-options button[aria-pressed="true"] {
  background: rgba(255, 122, 26, .16);
  border-color: rgba(255, 122, 26, .42);
  color: var(--accent);
}

.a11y-large-font {
  font-size: 112%;
}

.a11y-high-contrast {
  --bg: #000;
  --surface: #050505;
  --surface-2: #090909;
  --text: #fff;
  --muted: #ededed;
  --line: rgba(255, 255, 255, .35);
}

.a11y-underline-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.a11y-dyslexia {
  letter-spacing: .035em;
  word-spacing: .08em;
}

.a11y-reduce-motion * {
  scroll-behavior: auto !important;
  transition: none !important;
  animation: none !important;
}

.modal-panel {
  text-align: center;
}

.story-grid {
  text-align: left;
}

.site-footer .footer-grid {
  text-align: left;
}

@media (max-width: 960px) {
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-grid,
  .portfolio-grid {
    gap: 18px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .dropdown-panel {
    transition: none;
  }

  .main-nav {
    overscroll-behavior: contain;
  }

  .accessibility-widget {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 28px);
    --space: 60px;
    --space-sm: 36px;
    --grid-gap: 16px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .logo-strip {
    justify-content: center;
    text-align: center;
  }

  .trust-badge {
    text-align: left;
  }

  .portfolio-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .filter-btn {
    width: 100%;
    min-height: 44px;
  }

  .project-visual {
    height: 220px;
  }

  .project-card .card-body {
    padding: 18px;
  }

  .accessibility-toggle {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .footer-grid {
    text-align: center;
  }

  .site-footer .footer-grid {
    text-align: center;
  }
}


/* ================================
   ABOUT PAGE — TEAM SECTION ONLY
   Paste in assets/styles.css
================================ */

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

.team-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6%;
  width: min(980px, 86vw);
  height: 460px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 122, 26, .18), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.team-section .section-head {
  position: relative;
  z-index: 1;
}

.team-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap, 24px);
  align-items: stretch;
}

.team-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 122, 26, .16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .035));
  box-shadow: 0 22px 70px rgba(0, 0, 0, .28);
  text-align: center;
  isolation: isolate;
  transform: translateY(0);
  transition:
    transform .35s cubic-bezier(.2, .8, .2, 1),
    border-color .35s ease,
    box-shadow .35s ease;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 177, 86, .22), transparent 32%),
    radial-gradient(circle at 30% 95%, rgba(255, 122, 26, .18), transparent 36%);
  transition: opacity .35s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 122, 26, .42);
  box-shadow:
    0 28px 90px rgba(255, 122, 26, .12),
    0 20px 70px rgba(0, 0, 0, .32);
}

.team-card:hover::before {
  opacity: 1;
}

.team-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 122, 26, .24), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 122, 26, .08));
}

.team-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition:
    transform .55s cubic-bezier(.2, .8, .2, 1),
    filter .35s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.03);
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(7, 5, 3, 0), rgba(7, 5, 3, .86));
  pointer-events: none;
}

.team-meta {
  position: relative;
  flex: 1;
  padding: 24px 24px 28px;
}

.team-meta .eyebrow {
  margin-bottom: 10px;
}

.team-meta h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 30px);
}

.team-role {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-bottom: 14px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 122, 26, .28);
  border-radius: 999px;
  background: rgba(255, 122, 26, .11);
  color: var(--accent-2, #ffb156);
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
}

.team-meta p:last-child {
  max-width: 36ch;
  margin-inline: auto;
  margin-bottom: 0;
  color: var(--muted, #cdbfaf);
  font-size: 15px;
  line-height: 1.65;
}

.team-social-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.mini-proof {
  padding: 18px;
  border: 1px solid var(--line, rgba(255, 255, 255, .12));
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 122, 26, .1), transparent 40%),
    rgba(255, 255, 255, .045);
  text-align: center;
}

.mini-proof strong {
  display: block;
  color: var(--text, #fff7ef);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.03em;
}

.mini-proof span {
  display: block;
  margin-top: 8px;
  color: var(--muted, #cdbfaf);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

/* Tablet */
@media (max-width: 1080px) {
  .team-grid,
  .team-social-proof {
    grid-template-columns: 1fr 1fr;
  }

  .team-card:last-child {
    grid-column: 1 / -1;
    max-width: 520px;
    margin-inline: auto;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .team-section::before {
    top: 10%;
    height: 360px;
    width: 115vw;
  }

  .team-grid,
  .team-social-proof {
    grid-template-columns: 1fr;
  }

  .team-card,
  .team-card:last-child {
    grid-column: auto;
    max-width: 480px;
    margin-inline: auto;
  }

  .team-meta {
    padding: 20px 18px 24px;
  }

  .team-role {
    white-space: normal;
    line-height: 1.25;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .team-card,
  .team-card::before,
  .team-photo img {
    transition: none !important;
  }

  .team-card:hover {
    transform: none;
  }

  .team-card:hover .team-photo img {
    transform: none;
  }
}

/* v4 production updates: extensionless routing, contact backend UX, clean portfolio images and complete accessibility widget */
.hp-field{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;opacity:0!important;pointer-events:none!important}.check-label{display:flex;align-items:flex-start;gap:10px;color:var(--muted);font-weight:750;line-height:1.45}.check-label input{width:18px;height:18px;flex:0 0 18px;margin-top:2px;accent-color:var(--accent)}.contact-methods{display:grid;gap:16px;margin:18px 0}.contact-methods p{padding:16px;border:1px solid var(--line);border-radius:18px;background:rgba(255,255,255,.045);margin:0}.contact-methods strong{color:var(--text)}.client-dashboard-section .cta-card p:not(.eyebrow){max-width:720px;margin:0 auto 22px;color:var(--muted);font-size:18px}.project-photo span,.project-visual span{display:none!important}.project-photo:after{background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.22))}.accessibility-toggle{display:grid;place-items:center;padding:0}.accessibility-toggle svg{width:27px;height:27px;display:block;fill:currentColor}.accessibility-panel{width:min(360px,calc(100vw - 36px))}.accessibility-options{grid-template-columns:1fr}.accessibility-options button{text-align:left;min-height:44px}.a11y-focus *:focus,.a11y-focus *:focus-visible{outline:4px solid var(--accent)!important;outline-offset:4px!important}.a11y-hide-images img{visibility:hidden!important}.a11y-readable-font body,.a11y-readable-font button,.a11y-readable-font input,.a11y-readable-font select,.a11y-readable-font textarea{font-family:Arial,Helvetica,sans-serif!important}.a11y-readable-spacing{letter-spacing:.04em;word-spacing:.09em;line-height:1.85}.a11y-high-contrast{--accent:#ffd000;--accent-2:#fff36a;--bg:#000;--surface:#030303;--surface-2:#060606;--text:#fff;--muted:#fff;--line:rgba(255,255,255,.55)}.a11y-high-contrast body{background:#000!important}.a11y-large-cursor,.a11y-large-cursor *{cursor:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath fill='%23ff7a1a' stroke='%23000' stroke-width='2' d='M4 2l20 15-9 2 5 9-5 3-5-9-6 7z'/%3E%3C/svg%3E") 2 2,auto!important}.form-status.is-error{color:var(--danger,#ff5c5c)}.form-status.is-ok{color:var(--accent)}
@media (max-width:620px){.contact-methods p{text-align:left}.client-dashboard-section .btn{width:100%}.accessibility-widget{right:12px;bottom:12px}.accessibility-panel{width:calc(100vw - 24px);right:0}}

.hp-field {
  position: absolute !important;
  left: -99999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}


.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid var(--line, rgba(255,255,255,.12));
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.table-wrap th,
.table-wrap td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line, rgba(255,255,255,.12));
  text-align: left;
  vertical-align: top;
}

.table-wrap th {
  color: var(--accent, #ff7a1a);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.table-wrap td {
  color: var(--muted, #cdbfaf);
}

.table-wrap tr:last-child td {
  border-bottom: 0;
}

/* Footer spacing refinement */
.site-footer {
  padding: 42px 0 18px;
}

.footer-grid {
  gap: clamp(22px, 4vw, 56px);
  align-items: flex-start;
}

.footer-grid h2 {
  margin-bottom: 14px;
}

.footer-grid a {
  margin: 5px 0;
  line-height: 1.45;
}

.footer-grid p {
  margin: 0 0 12px;
  line-height: 1.55;
}

.footer-brand img {
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 34ch;
}

.footer-grid div:last-child p {
  margin-bottom: 12px;
}

.footer-grid div:last-child a {
  display: inline-block;
  margin: 2px 0;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
}

@media (max-width: 960px) {
  .site-footer {
    padding: 38px 0 18px;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding: 34px 0 18px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-bottom {
    margin-top: 22px;
    padding-top: 18px;
  }
}


/* Legal pages: remove bullet points */
html[data-page="terms"] .legal ul,
html[data-page="privacy"] .legal ul,
html[data-page="cookies"] .legal ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

html[data-page="terms"] .legal li,
html[data-page="privacy"] .legal li,
html[data-page="cookies"] .legal li {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

html[data-page="terms"] .legal li::marker,
html[data-page="privacy"] .legal li::marker,
html[data-page="cookies"] .legal li::marker {
  content: "" !important;
}



/* 404 page */
html[data-page="404"] .error-page {
  min-height: calc(100vh - 220px);
  display: grid;
  place-items: center;
  text-align: center;
}

html[data-page="404"] .error-page h1 {
  max-width: 980px;
}

html[data-page="404"] .error-actions {
  margin-top: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

html[data-page="404"] .service-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

html[data-page="404"] .service-card:hover {
  color: inherit;
}

/* ================================
   Process steps center override
================================ */

.container.process-grid {
  justify-items: center !important;
  align-items: stretch !important;
  text-align: center !important;
}

.container.process-grid .step {
  width: 100% !important;
  max-width: 360px !important;
  text-align: center !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.container.process-grid .step span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin-left: auto !important;
  margin-right: auto !important;
}

.container.process-grid .step h3 {
  width: 100% !important;
  text-align: center !important;
}

.container.process-grid .step p {
  width: 100% !important;
  max-width: 30ch !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* Logo aspect-ratio fix */
.brand img,
.footer-brand img {
  width: 125px !important;
  height: auto !important;
  aspect-ratio: 5 / 2 !important;
  object-fit: contain !important;
}