/*
Theme Name: Hello Elementor Child - Moytra
Template: hello-elementor
Description: Brand tokens and typography for Moytra Management (per TZ).
Version: 1.6.1
Author: Moytra Management
*/

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --color-primary: #3f3f3f;
  --color-secondary: #6b6b6b;
  --color-accent: #f2be1a;
  --color-surface: #f6f6f4;
  --color-border: #e5e5e0;
  --color-text: #1f1f1f;
  --color-text-muted: #5c5c5c;
  --color-white: #ffffff;
  --space-xs: 8px;
  --space-s: 16px;
  --space-m: 24px;
  --space-l: 32px;
  --space-xl: 48px;
  --space-xxl: 64px;
  --container-max: 1200px;
  --section-pad: clamp(64px, 8vw, 120px);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --motion-duration: 0.75s;
  --motion-stagger: 0.08s;
}

body {
  font-family: "Manrope", "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--color-text);
  background: var(--color-surface);
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", "Inter", "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.moytra-container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-m);
}

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

.moytra-section-title {
  display: flex;
  align-items: center;
  gap: var(--space-m);
  margin-bottom: var(--space-xl);
  min-width: 0;
  max-width: 100%;
}

.moytra-section-title h2 {
  color: var(--color-accent);
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  min-width: 0;
}

.moytra-section-title::after {
  content: "";
  flex: 1;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
}

.moytra-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-l);
}

.moytra-stat-card {
  background: var(--color-white);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-l);
}

.moytra-stat-card .stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.moytra-stat-card .stat-label {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-top: var(--space-xs);
}

.moytra-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-surface);
}

@media (max-width: 767px) {
  .moytra-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.moytra-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-pad) var(--space-m);
}

.moytra-hero__media {
  min-height: 320px;
  background: var(--color-primary);
}

.moytra-cta-band {
  background: var(--color-accent);
  color: var(--color-text);
  padding: var(--section-pad) var(--space-m);
  text-align: center;
}

.moytra-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-m);
}

.moytra-service-list__item {
  display: block;
  padding: var(--space-l);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(31, 31, 31, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.moytra-service-list__item strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--color-text);
}

.moytra-service-list__item span {
  display: block;
  color: var(--color-text-muted);
  line-height: 1.65;
  font-size: 0.92rem;
  max-width: none;
  text-align: left;
}

@media (max-width: 767px) {
  .moytra-service-list {
    grid-template-columns: 1fr;
  }
}

/* Header / footer (free Elementor — no Theme Builder) */
.moytra-site-header {
  background: var(--color-primary);
  border-bottom: 3px solid var(--color-accent);
  position: sticky;
  top: 0;
  z-index: 100;
}

.moytra-site-header__inner {
  display: grid;
  grid-template-columns: minmax(110px, 190px) 1fr auto;
  align-items: center;
  gap: 12px 20px;
  min-height: 72px;
  max-width: 1320px;
  padding-inline: 16px 20px;
}

.moytra-site-header__brand .custom-logo-link {
  display: block;
  line-height: 0;
}

.moytra-site-header__brand .custom-logo,
.moytra-site-header__brand img {
  max-height: 40px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.moytra-site-header__nav {
  justify-self: center;
  min-width: 0;
}

.moytra-site-header__title,
.moytra-site-header__brand a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.moytra-primary-menu {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 26px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.moytra-primary-menu li {
  flex-shrink: 0;
}

.moytra-primary-menu a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.moytra-primary-menu a:hover,
.moytra-site-header__lang {
  justify-self: end;
  position: relative;
}

.moytra-lang-switcher {
  position: relative;
}

.moytra-lang-switcher__segmented {
  display: inline-flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 3px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.moytra-lang-switcher__item {
  list-style: none;
  margin: 0;
  padding: 0;
}

.moytra-lang-switcher__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.moytra-lang-switcher__item a:hover {
  color: var(--color-accent);
  background: rgba(242, 190, 26, 0.1);
}

.moytra-lang-switcher__item.is-active a,
.moytra-lang-switcher__item a[aria-current="true"] {
  background: var(--color-accent);
  color: #1f1f1f;
  box-shadow: 0 2px 10px rgba(242, 190, 26, 0.35);
}

.moytra-lang-switcher__trigger {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.moytra-lang-switcher__trigger:hover,
.moytra-lang-switcher.is-open .moytra-lang-switcher__trigger {
  border-color: rgba(242, 190, 26, 0.45);
  background: rgba(242, 190, 26, 0.08);
}

.moytra-lang-switcher__globe {
  display: flex;
  color: var(--color-accent);
  line-height: 0;
}

.moytra-lang-switcher__caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.75);
  transition: transform 0.2s ease;
}

.moytra-lang-switcher.is-open .moytra-lang-switcher__caret {
  transform: rotate(180deg);
}

.moytra-lang-switcher__dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 200;
  min-width: 11.5rem;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.moytra-lang-switcher.is-open .moytra-lang-switcher__dropdown {
  display: block;
}

.moytra-lang-switcher__dropdown li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.moytra-lang-switcher__dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.2s ease, color 0.2s ease;
}

.moytra-lang-switcher__dropdown a:hover {
  background: rgba(242, 190, 26, 0.12);
  color: #fff;
}

.moytra-lang-switcher__dropdown li[aria-selected="true"] a {
  background: rgba(242, 190, 26, 0.18);
  color: var(--color-accent);
}

.moytra-lang-switcher__label {
  font-size: 0.88rem;
  font-weight: 600;
}

.moytra-lang-switcher__code {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.65;
}

@media (max-width: 767px) {
  .moytra-lang-switcher__segmented {
    display: none;
  }

  .moytra-lang-switcher__trigger {
    display: inline-flex;
  }
}

.moytra-site-footer {
  background: var(--color-primary);
  color: var(--color-white);
  margin-top: var(--space-xxl);
}

.moytra-site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-l);
  padding-block: var(--space-xxl);
}

.moytra-site-footer__heading {
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 var(--space-s);
}

.moytra-site-footer__brand {
  font-weight: 800;
  margin: 0 0 var(--space-xs);
}

.moytra-site-footer__text,
.moytra-footer-menu a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.6;
}

.moytra-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.moytra-site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: var(--space-m);
  font-size: 0.85rem;
  opacity: 0.8;
}

@media (max-width: 991px) {
  .moytra-site-header__inner {
    flex-wrap: wrap;
    padding-block: var(--space-s);
    gap: var(--space-s);
  }

  .moytra-site-header__nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
  }

  .moytra-primary-menu {
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    min-width: 0 !important;
    gap: 8px 14px !important;
  }

  .moytra-site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .moytra-site-footer__grid {
    grid-template-columns: 1fr;
  }
}

/* Inner pages */
.moytra-kicker {
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 var(--space-s);
}

.moytra-aside-card {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-xl);
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  border-radius: 0 0 0 48px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.moytra-aside-card--photo {
  min-height: 360px;
  background-color: var(--color-primary);
}

.moytra-aside-card--photo p {
  position: relative;
  z-index: 1;
}

.moytra-aside-card p {
  margin: 0;
  line-height: 1.7;
  opacity: 0.92;
}

.moytra-quote {
  margin: 0 0 var(--space-l);
  padding-left: var(--space-l);
  border-left: 4px solid var(--color-accent);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
}

.moytra-check-list {
  margin: var(--space-m) 0;
  padding-left: 1.25rem;
  line-height: 1.9;
  color: var(--color-text-muted);
}

.moytra-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.moytra-pill {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border-radius: 999px;
}

.moytra-pill.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.moytra-project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-l);
}

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

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

@media (max-width: 640px) {
  .moytra-project-grid--full {
    grid-template-columns: 1fr;
  }
}

.moytra-projects-filters {
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}

.moytra-projects-featured {
  max-width: 1040px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 20px 56px rgba(31, 31, 31, 0.07);
  border-left: 6px solid var(--color-accent);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.moytra-projects-featured__visual {
  aspect-ratio: 21 / 9;
  overflow: hidden;
}

.moytra-projects-featured__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.moytra-projects-featured__body {
  padding: clamp(28px, 4vw, 48px);
}

.moytra-projects-featured__title {
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  line-height: 1.15;
  margin: 0 0 12px;
}

.moytra-projects-featured__summary {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 62ch;
  margin: 0 0 var(--space-l);
}

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

.moytra-case-block {
  padding: var(--space-m) var(--space-l);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.moytra-project-card {
  background: var(--color-white);
  border-top: 4px solid var(--color-accent);
  padding: 0;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-accent);
  box-shadow: 0 10px 28px rgba(31, 31, 31, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.moytra-project-card__thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.moytra-project-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.moytra-project-card:hover .moytra-project-card__thumb img {
  transform: scale(1.04);
}

.moytra-project-card__body {
  padding: var(--space-l);
}

.moytra-project-card__meta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-xs);
}

.moytra-project-card__body h3 {
  margin: 0 0 var(--space-s);
  font-size: 1.15rem;
}

.moytra-project-card__body p:last-child {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.moytra-case {
  display: grid;
  gap: var(--space-l);
  margin-top: var(--space-xl);
}

.moytra-case-block h3 {
  margin: 0 0 var(--space-xs);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}

.moytra-case-block p {
  margin: 0;
  color: var(--color-text-muted);
}

.moytra-contact-grid {
  display: grid;
  gap: var(--space-m);
  margin-bottom: var(--space-xl);
}

.moytra-contact-grid > div {
  padding: var(--space-m) var(--space-l);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
}

.moytra-contact-grid .moytra-kicker {
  margin-bottom: 6px;
}

.moytra-contact-grid a {
  color: var(--color-text);
  font-weight: 600;
  text-decoration: none;
}

.moytra-contact-grid a:hover {
  color: var(--color-accent);
}

.moytra-contact-form {
  margin-top: var(--space-m);
  padding: var(--space-l);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.moytra-contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.moytra-contact-sidebar__steps-title {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-m);
}

.moytra-contact-sidebar__steps-title h2 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.moytra-contact-form__hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.moytra-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-m);
}

.moytra-contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.moytra-contact-form__field--full {
  grid-column: 1 / -1;
}

.moytra-contact-form__field span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.moytra-contact-form__field input,
.moytra-contact-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font: inherit;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.moytra-contact-form__field input:focus,
.moytra-contact-form__field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(242, 190, 26, 0.25);
}

.moytra-contact-form__field textarea {
  resize: vertical;
  min-height: 140px;
}

.moytra-contact-form__submit {
  margin-top: var(--space-m);
}

.moytra-contact-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.moytra-contact-form__status {
  min-height: 1.4em;
  margin: var(--space-s) 0 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.moytra-contact-form__status.is-success {
  color: #2f6b2f;
}

.moytra-contact-form__status.is-error {
  color: #9b2c2c;
}

.moytra-steps {
  margin: 0;
  padding-left: 1.25rem;
  line-height: 1.9;
  color: var(--color-text-muted);
}

.moytra-form-placeholder {
  margin-top: var(--space-l);
  padding: var(--space-xl);
  border: 2px dashed var(--color-border);
  background: var(--color-surface);
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.moytra-btn {
  display: inline-block;
  margin-top: var(--space-m);
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo), background 0.25s ease;
}

.moytra-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(31, 31, 31, 0.18);
}

/* ── Deloitte-inspired motion & widgets ── */

html.moytra-smooth-scroll {
  scroll-behavior: auto;
}

html.moytra-reduced-motion {
  scroll-behavior: auto;
}

.moytra-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 9999;
  pointer-events: none;
  background: rgba(242, 190, 26, 0.15);
}

.moytra-scroll-progress::after {
  content: "";
  display: block;
  height: 100%;
  width: var(--moytra-progress, 0%);
  background: linear-gradient(90deg, var(--color-accent), #ffd84d);
  transition: width 0.12s linear;
}

.moytra-site-header {
  transition: box-shadow 0.4s var(--ease-out-expo), border-color 0.4s ease;
}

.moytra-site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}

.moytra-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--motion-duration) var(--ease-out-expo),
    transform var(--motion-duration) var(--ease-out-expo);
  will-change: opacity, transform;
}

.moytra-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.moytra-reveal--stagger.is-visible {
  transition-delay: calc(var(--moytra-i, 0) * var(--motion-stagger));
}

.moytra-hero__media,
.moytra-aside-card,
[data-moytra-parallax] {
  transform: translateY(var(--moytra-parallax-y, 0));
  transition: transform 0.1s linear;
  will-change: transform;
}

.moytra-stat-card,
.moytra-project-card,
.moytra-feature-card {
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo);
}

.moytra-stat-card:hover,
.moytra-project-card:hover,
.moytra-feature-card:hover,
.moytra-service-list__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(31, 31, 31, 0.08);
}

.moytra-service-list__item {
  position: relative;
}

.moytra-service-list__item::before {
  display: none;
}

.moytra-scroll-strip {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, #000 92%, transparent);
  padding-bottom: var(--space-s);
}

.moytra-scroll-strip::-webkit-scrollbar {
  display: none;
}

.moytra-scroll-strip .moytra-pills {
  flex-wrap: nowrap;
  width: max-content;
  padding-right: var(--space-xl);
}

.moytra-scroll-strip .moytra-pill {
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out-expo), background 0.25s ease, color 0.25s ease;
}

.moytra-scroll-strip .moytra-pill:hover {
  transform: scale(1.04);
}

.moytra-scroll-strip__hint {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--color-accent);
  opacity: 0.7;
  pointer-events: none;
}

.moytra-feature-card {
  display: block;
  background: var(--color-white);
  padding: var(--space-xl);
  border-left: 4px solid var(--color-accent);
  text-decoration: none;
  color: inherit;
  min-height: 220px;
}

.moytra-feature-card__kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-s);
}

.moytra-feature-card h3 {
  margin: 0 0 var(--space-s);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.25;
}

.moytra-feature-card p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.moytra-feature-card__link {
  display: inline-block;
  margin-top: var(--space-l);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.moytra-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-l);
}

.moytra-editorial-block {
  max-width: 52rem;
}

.moytra-editorial-block h1,
.moytra-editorial-block .moytra-editorial-block__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 var(--space-m);
}

.moytra-editorial-block__lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 46ch;
}

.moytra-hero-banner {
  position: relative;
  min-height: min(88vh, 920px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.moytra-hero-banner__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      var(--color-surface) 0%,
      rgba(246, 246, 244, 0.96) 36%,
      rgba(246, 246, 244, 0.72) 52%,
      rgba(63, 63, 63, 0.25) 100%
    ),
    url("https://images.unsplash.com/photo-1449824913935-59a10b8d2000?auto=format&fit=crop&w=1800&q=80")
    center center / cover no-repeat;
}

.moytra-hero-banner__bg::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(
    165deg,
    rgba(63, 63, 63, 0.15) 0%,
    rgba(63, 63, 63, 0.85) 45%,
    var(--color-primary) 45%,
    var(--color-primary) 88%,
    var(--color-accent) 88%,
    var(--color-accent) 92%,
    transparent 92%
  );
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.moytra-hero-banner__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(88px, 14vw, 148px) 24px clamp(64px, 8vw, 96px);
}

.moytra-hero-banner .moytra-editorial-block {
  max-width: 620px;
}

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

.moytra-hero-banner .moytra-btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 12px 26px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.25s ease, color 0.25s ease;
}

.moytra-hero-banner .moytra-btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.moytra-marquee {
  overflow: hidden;
  border-block: 1px solid var(--color-border);
  background: var(--color-primary);
  color: var(--color-white);
  padding-block: var(--space-m);
}

.moytra-marquee__track {
  display: flex;
  gap: var(--space-xxl);
  width: max-content;
  animation: moytraMarquee 32s linear infinite;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.moytra-marquee__track span {
  white-space: nowrap;
  opacity: 0.85;
}

@keyframes moytraMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.moytra-section-title--center {
  text-align: center;
}

.moytra-stat-grid--metrics .moytra-stat-card--metric {
  text-align: center;
  background: var(--color-primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: var(--space-l) var(--space-m);
}

.moytra-stat-grid--metrics .moytra-stat-card--metric .stat-value {
  color: var(--color-accent);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.moytra-stat-grid--metrics .moytra-stat-card--metric .stat-label {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.moytra-metrics-band {
  background: transparent;
  padding: clamp(32px, 5vw, 48px) 0;
}

.moytra-metrics-band .moytra-stat-grid--metrics {
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.moytra-home-featured {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(31, 31, 31, 0.12);
  margin-bottom: var(--space-l);
}

.moytra-home-featured__media {
  margin: 0;
  aspect-ratio: 21 / 9;
  min-height: 280px;
  position: relative;
}

.moytra-home-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.moytra-home-featured__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(63, 63, 63, 0.15) 0%, rgba(63, 63, 63, 0.45) 55%, rgba(63, 63, 63, 0.82) 100%);
}

.moytra-home-featured__card {
  position: absolute;
  left: clamp(20px, 4vw, 40px);
  bottom: clamp(20px, 4vw, 36px);
  max-width: min(520px, calc(100% - 40px));
  background: rgba(255, 255, 255, 0.97);
  border-left: 5px solid var(--color-accent);
  border-radius: 0 8px 8px 0;
  padding: clamp(20px, 3vw, 28px) clamp(22px, 3vw, 32px);
  box-shadow: 0 16px 40px rgba(31, 31, 31, 0.18);
}

.moytra-home-featured__card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  line-height: 1.25;
}

.moytra-home-featured__card p {
  margin: 0 0 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.moytra-approach-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--space-l);
}

.moytra-approach-step {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: 8px;
  padding: var(--space-l);
  box-shadow: 0 8px 24px rgba(31, 31, 31, 0.05);
}

.moytra-approach-step:nth-child(1) { grid-column: 1 / 3; }
.moytra-approach-step:nth-child(2) { grid-column: 3 / 5; }
.moytra-approach-step:nth-child(3) { grid-column: 5 / 7; }
.moytra-approach-step:nth-child(4) { grid-column: 2 / 4; }
.moytra-approach-step:nth-child(5) { grid-column: 4 / 6; }

.moytra-approach-step__num {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 10px;
}

.moytra-approach-step__title {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.moytra-approach-step p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.moytra-trust {
  width: 100%;
}

.moytra-trust__title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.2;
  margin: 0 0 var(--space-l);
  padding-bottom: var(--space-m);
  border-bottom: 4px solid var(--color-accent);
  display: block;
  max-width: 100%;
}

.moytra-trust__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-m);
  margin-top: var(--space-l);
}

.moytra-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: var(--space-m) var(--space-l);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  line-height: 1.55;
  color: var(--color-text);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.moytra-trust__item:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(31, 31, 31, 0.06);
}

.moytra-trust__mark {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(242, 190, 26, 0.2);
}

.moytra-home-projects-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-l);
}

.moytra-home-projects-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 14px 32px;
  background: transparent;
  color: var(--color-primary) !important;
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.moytra-home-projects-cta__btn:hover {
  background: var(--color-primary);
  color: var(--color-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(31, 31, 31, 0.14);
}

.moytra-service-list--brochure .moytra-service-list__item {
  border-left-width: 4px;
}

.moytra-project-card--featured {
  padding: var(--space-l);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  max-width: 760px;
}

.moytra-client-marquee {
  overflow: hidden;
  padding-block: var(--space-m);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.moytra-client-marquee__track {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  width: max-content;
  animation: moytraMarquee 48s linear infinite;
}

.moytra-client-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-s);
  padding: 10px 18px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  white-space: nowrap;
}

.moytra-client-marquee__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.moytra-client-marquee__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
}

/* ── Mobile / small screens ── */
@media (max-width: 767px) {
  html,
  body {
    overflow-x: clip;
    max-width: 100%;
  }

  .moytra-container {
    padding-inline: var(--space-s);
  }

  .moytra-section {
    padding-block: clamp(48px, 10vw, 72px);
  }

  .moytra-section-title {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-s);
    margin-bottom: var(--space-l);
  }

  .moytra-section-title h2 {
    white-space: normal;
    font-size: clamp(1.25rem, 5.5vw, 1.65rem);
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
    max-width: 100%;
  }

  .moytra-section-title::after {
    width: 100%;
    flex: none;
    height: 3px;
  }

  .moytra-section-title--center {
    align-items: center;
    text-align: center;
  }

  .moytra-editorial-block h1,
  .moytra-editorial-block .moytra-editorial-block__title {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
    line-height: 1.12;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .moytra-editorial-block__lead {
    max-width: none;
    font-size: 1rem;
  }

  .moytra-hero-banner {
    min-height: auto;
  }

  .moytra-hero-banner__inner {
    padding: 72px 16px 48px;
  }

  .moytra-hero-banner .moytra-editorial-block__title {
    font-size: clamp(1.5rem, 6.5vw, 2rem) !important;
  }

  .moytra-hero-banner .moytra-editorial-block__lead {
    max-width: none;
  }

  .moytra-hero-banner .moytra-hero-actions,
  .moytra-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .moytra-hero-banner .moytra-btn-outline,
  .moytra-btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .moytra-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-m);
  }

  .moytra-stat-card {
    padding: var(--space-m);
  }

  .moytra-stat-card .stat-value {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .moytra-feature-grid,
  .moytra-project-grid {
    grid-template-columns: 1fr;
  }

  .moytra-feature-card {
    padding: var(--space-l);
    min-height: auto;
  }

  .moytra-aside-card {
    padding: var(--space-l);
    border-radius: 0 0 0 24px;
    min-height: auto;
  }

  .moytra-quote {
    padding-left: var(--space-m);
    font-size: 1.1rem;
  }

  .moytra-marquee,
  .moytra-client-marquee {
    overflow-x: hidden;
    max-width: 100%;
  }

  .moytra-site-header__inner {
    grid-template-columns: 1fr auto !important;
    padding-inline: 12px !important;
    gap: 10px !important;
  }

  .moytra-site-header__nav {
    grid-column: 1 / -1;
    order: 3;
    overflow-x: visible;
    width: 100%;
  }

  .moytra-primary-menu {
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    min-width: 0 !important;
    gap: 8px 14px !important;
  }

  .moytra-primary-menu a {
    white-space: normal !important;
    font-size: 0.68rem !important;
    line-height: 1.3;
  }

  .moytra-site-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-l);
    padding-block: var(--space-xl);
  }

  .elementor-section,
  .elementor-container,
  .elementor-column,
  .elementor-widget-wrap {
    max-width: 100% !important;
  }

  .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding-inline: 16px;
  }

  .moytra-contact-form {
    padding: var(--space-m);
  }

  .moytra-contact-form__grid {
    grid-template-columns: 1fr;
  }

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

  .moytra-case--grid {
    grid-template-columns: 1fr;
  }

  .moytra-projects-featured__body {
    padding: var(--space-m);
  }
}

.moytra-contact-photo {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: var(--space-l);
  aspect-ratio: 16 / 10;
  box-shadow: 0 12px 32px rgba(31, 31, 31, 0.08);
}

.moytra-contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.moytra-media-band {
  min-height: clamp(180px, 28vw, 320px);
  background-size: cover;
  background-position: center;
  position: relative;
}

.moytra-media-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246, 246, 244, 0.92) 0%, rgba(246, 246, 244, 0.35) 45%, rgba(63, 63, 63, 0.15) 100%);
}

.moytra-media-split {
  max-width: 960px;
  margin: 0 auto var(--space-xl);
}

.moytra-media-split__figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(31, 31, 31, 0.1);
  aspect-ratio: 21 / 9;
}

.moytra-media-split__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.moytra-home-about-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.moytra-home-about-split__media {
  margin: 0;
  border-radius: 0 0 0 48px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 480px;
  box-shadow: 0 20px 48px rgba(31, 31, 31, 0.12);
}

.moytra-home-about-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.moytra-home-about-split__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.15;
  margin: 0 0 var(--space-m);
}

.moytra-home-about-split__body p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0;
}

.moytra-feature-grid--photo {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-l);
}

.moytra-feature-card--photo {
  padding: 0;
  overflow: hidden;
}

.moytra-feature-card__thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.moytra-feature-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.moytra-feature-card--photo:hover .moytra-feature-card__thumb img {
  transform: scale(1.05);
}

.moytra-feature-card--photo .moytra-feature-card__kicker,
.moytra-feature-card--photo h3,
.moytra-feature-card--photo p,
.moytra-feature-card--photo .moytra-feature-card__link {
  margin-left: var(--space-l);
  margin-right: var(--space-l);
}

.moytra-feature-card--photo .moytra-feature-card__kicker {
  margin-top: var(--space-m);
}

.moytra-feature-card--photo .moytra-feature-card__link {
  display: inline-block;
  margin-bottom: var(--space-l);
}

.moytra-home-featured-visual {
  margin: 0 0 var(--space-l);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 21 / 8;
  box-shadow: 0 16px 40px rgba(31, 31, 31, 0.1);
}

.moytra-home-featured-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .moytra-home-about-split {
    grid-template-columns: 1fr;
  }

  .moytra-home-about-split__media {
    max-height: 320px;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
  }

  .moytra-feature-grid--photo {
    grid-template-columns: 1fr;
  }

  .moytra-metrics-band .moytra-stat-grid--metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .moytra-home-featured {
    display: flex;
    flex-direction: column;
  }

  .moytra-home-featured__media {
    aspect-ratio: 16 / 10;
    min-height: 220px;
  }

  .moytra-home-featured__card {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin: 0;
    border-radius: 0 0 12px 12px;
  }

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

  .moytra-approach-step:nth-child(n) {
    grid-column: auto;
  }

  .moytra-trust__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .moytra-stat-grid {
    grid-template-columns: 1fr;
  }

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

  .moytra-approach-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .moytra-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .moytra-marquee__track {
    animation: none;
  }

  .moytra-client-marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }

  .moytra-stat-card:hover,
  .moytra-project-card:hover,
  .moytra-feature-card:hover,
  .moytra-btn:hover {
    transform: none;
    box-shadow: none;
  }
}
