:root {
  --bg: #081210;
  --bg-deep: #0d1815;
  --surface: rgba(16, 29, 25, 0.72);
  --surface-strong: #12211d;
  --surface-soft: rgba(255, 255, 255, 0.04);
  --surface-light: #f4efe7;
  --surface-cream: #fbf8f2;
  --text: #f7f3eb;
  --text-dark: #131917;
  --muted: #b5beb6;
  --muted-dark: #606b65;
  --line: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(11, 21, 18, 0.1);
  --accent: #1f7a5b;
  --accent-bright: #30b484;
  --accent-deep: #143d31;
  --accent-warm: #c4a06a;
  --white: #ffffff;
  --shadow-lg: 0 30px 80px rgba(2, 12, 10, 0.35);
  --shadow-md: 0 18px 44px rgba(2, 12, 10, 0.18);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --transition: 280ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(48, 180, 132, 0.12), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(196, 160, 106, 0.14), transparent 26%),
    linear-gradient(180deg, #081210 0%, #0d1815 36%, #081210 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

::selection {
  background: rgba(48, 180, 132, 0.25);
  color: var(--text);
}

.page-shell {
  position: relative;
}

.section-shell {
  position: relative;
  padding: clamp(5rem, 8vw, 7.5rem) 0;
}

.section-light {
  background:
    radial-gradient(circle at 18% 10%, rgba(196, 160, 106, 0.14), transparent 24%),
    linear-gradient(180deg, #f8f4ed 0%, #f2ece2 100%);
  color: var(--text-dark);
}

.section-dark {
  background:
    radial-gradient(circle at 78% 18%, rgba(48, 180, 132, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(13, 24, 21, 0.96) 0%, rgba(8, 18, 16, 0.98) 100%);
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(247, 243, 235, 0.82);
  margin-bottom: 1.4rem;
}

.eyebrow-line,
.section-kicker::before {
  content: "";
  width: 2.9rem;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-bright), transparent);
}

.section-kicker {
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section-heading-center {
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.hero-copy h1,
.sticky-card h2,
.cta-banner h2 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  max-width: 11ch;
  margin: 0 0 1rem;
}

.section-heading h2,
.sticky-card h2,
.cta-banner h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  margin: 0 0 1.2rem;
}

.section-heading p,
.hero-text,
.sticky-card p,
.cta-banner p {
  font-size: 1.06rem;
  color: inherit;
  opacity: 0.84;
  max-width: 62ch;
}

.btn {
  border-radius: 999px;
  padding: 0.96rem 1.45rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}

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

.btn-brand {
  color: var(--white);
  border: 1px solid rgba(48, 180, 132, 0.45);
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  box-shadow: 0 18px 40px rgba(31, 122, 91, 0.28);
}

.btn-brand:hover,
.btn-brand:focus {
  color: var(--white);
  box-shadow: 0 22px 48px rgba(31, 122, 91, 0.35);
}

.btn-outline-premium {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.btn-outline-premium:hover,
.btn-outline-premium:focus {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.section-light .btn-outline-premium {
  color: var(--text-dark);
  border-color: rgba(19, 25, 23, 0.12);
  background: rgba(19, 25, 23, 0.04);
}

.section-light .btn-outline-premium:hover,
.section-light .btn-outline-premium:focus {
  color: var(--text-dark);
  border-color: rgba(19, 25, 23, 0.22);
  background: rgba(19, 25, 23, 0.08);
}

.studio-navbar {
  padding: 1.15rem 0;
  background: rgba(8, 18, 16, 0.38);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: padding var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.studio-navbar.scrolled {
  padding: 0.9rem 0;
  background: rgba(8, 18, 16, 0.82);
  border-color: var(--line);
  box-shadow: 0 12px 34px rgba(3, 10, 8, 0.2);
}

.navbar-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 1.4rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.9rem;
  color: var(--white);
  font-size: 1rem;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-bright));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 14px 30px rgba(2, 12, 10, 0.22);
}

.brand-text {
  color: var(--text);
}

.section-light .brand-text,
.site-footer .brand-text {
  color: inherit;
}

.navbar-nav {
  gap: 0.8rem;
}

.navbar-nav .nav-link {
  position: relative;
  color: rgba(247, 243, 235, 0.74);
  font-weight: 600;
  padding: 0.45rem 0.55rem;
  transition: color var(--transition);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.12rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--accent-bright);
  transform: translateX(-50%) scale(0);
  transition: transform var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white);
}

.navbar-nav .nav-link.active::after {
  transform: translateX(-50%) scale(1);
}

.nav-cta {
  padding: 0.8rem 1.2rem;
  font-size: 0.94rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.lang-btn {
  min-width: 2.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.5rem 0.72rem;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(247, 243, 235, 0.72);
  background: transparent;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.lang-btn:hover,
.lang-btn:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.lang-btn.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  box-shadow: 0 12px 28px rgba(31, 122, 91, 0.24);
}

.navbar-toggler {
  padding: 0.4rem;
}

.navbar-toggler-icon {
  width: 1.4rem;
  height: 1.4rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28247,243,235,0.88%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6.8rem;
  overflow: clip;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.48;
  pointer-events: none;
}

.hero-glow-one {
  width: 20rem;
  height: 20rem;
  top: 5rem;
  right: -4rem;
  background: rgba(48, 180, 132, 0.18);
}

.hero-glow-two {
  width: 22rem;
  height: 22rem;
  bottom: 4rem;
  left: -7rem;
  background: rgba(196, 160, 106, 0.16);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.45rem 0 1.15rem;
}

.hero-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  padding: 0.64rem 0.88rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 243, 235, 0.84);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.fit-panel {
  padding: 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(48, 180, 132, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}

.fit-head {
  margin-bottom: 0.9rem;
}

.fit-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.68);
}

.fit-label::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-warm), transparent);
}

.fit-intro {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
  color: rgba(247, 243, 235, 0.74);
}

.fit-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.fit-tab {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 243, 235, 0.76);
  font-size: 0.84rem;
  font-weight: 700;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.fit-tab:hover,
.fit-tab:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: none;
}

.fit-tab.active {
  color: var(--white);
  border-color: rgba(48, 180, 132, 0.32);
  background: linear-gradient(135deg, rgba(48, 180, 132, 0.22), rgba(196, 160, 106, 0.14));
  box-shadow: 0 14px 32px rgba(31, 122, 91, 0.18);
}

.fit-display {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 21, 18, 0.44);
}

.fit-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.46rem 0.72rem;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 243, 235, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fit-title {
  margin: 0 0 0.45rem;
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.fit-text {
  margin: 0;
  color: rgba(247, 243, 235, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}

.fit-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.fit-point {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-audience {
  margin: 0 0 1.5rem;
}

.audience-label,
.needs-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.68);
}

.audience-label::before,
.needs-label::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-warm), transparent);
}

.audience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.audience-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 243, 235, 0.84);
  font-size: 0.9rem;
  font-weight: 600;
}

.needs-panel {
  padding: 1rem 1.05rem;
  margin: 0 0 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}

.needs-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.need-card {
  display: block;
  min-height: 100%;
  padding: 0.82rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
}

.need-card:hover {
  transform: translateY(-4px);
  border-color: rgba(48, 180, 132, 0.32);
  background: rgba(255, 255, 255, 0.07);
}

.need-title {
  display: block;
  margin-bottom: 0.28rem;
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.need-card strong {
  display: block;
  color: rgba(247, 243, 235, 0.72);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-trust {
  margin-top: 0;
}

.trust-tile {
  height: 100%;
  padding: 0.82rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}

.trust-tile strong,
.trust-tile span {
  display: block;
}

.trust-tile strong {
  font-size: 0.95rem;
  margin-bottom: 0.12rem;
}

.trust-tile span {
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(247, 243, 235, 0.72);
}

.studio-stage {
  position: relative;
  min-height: 33rem;
}

.stage-panel,
.floating-card,
.service-card,
.reason-card,
.process-card,
.portfolio-card,
.industry-card,
.testimonial-slider,
.contact-info-card,
.contact-form-card,
.cta-banner,
.glass-card,
.stat-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.stage-main {
  position: relative;
  z-index: 2;
  padding: 1.25rem;
  min-height: 26.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(13, 24, 21, 0.84);
  backdrop-filter: blur(20px);
}

.browser-bar {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.browser-bar span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.browser-bar span:first-child {
  background: rgba(255, 126, 120, 0.7);
}

.browser-bar span:nth-child(2) {
  background: rgba(255, 201, 87, 0.7);
}

.browser-bar span:nth-child(3) {
  background: rgba(64, 217, 140, 0.72);
}

.stage-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.15rem;
}

.stage-head h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 1.05;
  margin: 0.35rem 0 0;
  font-family: "Syne", sans-serif;
  letter-spacing: -0.04em;
}

.panel-label,
.stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-label {
  color: rgba(247, 243, 235, 0.72);
}

.stage-badge {
  white-space: nowrap;
  padding: 0.6rem 0.85rem;
  color: var(--white);
  background: rgba(48, 180, 132, 0.14);
  border: 1px solid rgba(48, 180, 132, 0.24);
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.mini-case {
  padding: 1rem;
  min-height: 6.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.025) 100%),
    rgba(255, 255, 255, 0.02);
}

.mini-case span,
.mini-case em {
  display: block;
  font-size: 0.82rem;
  color: rgba(247, 243, 235, 0.66);
}

.mini-case strong {
  display: block;
  margin: 0.28rem 0;
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.mini-case em {
  font-style: normal;
}

.floating-card {
  position: absolute;
  background: rgba(14, 26, 23, 0.86);
  backdrop-filter: blur(16px);
}

.floating-card-metrics {
  top: 2.75rem;
  right: -0.2rem;
  width: min(16rem, 46vw);
  padding: 1rem 1.05rem;
  z-index: 3;
  animation: floatCard 7s ease-in-out infinite;
}

.floating-card-proof {
  bottom: 1.2rem;
  left: -1rem;
  width: min(15.5rem, 42vw);
  padding: 1rem;
  z-index: 3;
  animation: floatCard 8s ease-in-out infinite 0.5s;
}

.floating-card-kpi {
  bottom: -0.7rem;
  right: 1.5rem;
  width: min(13.5rem, 40vw);
  padding: 1rem;
  z-index: 3;
  animation: floatCard 7.5s ease-in-out infinite 1s;
}

.floating-label,
.floating-card-kpi span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.56);
}

.floating-card strong,
.proof-value {
  display: block;
  font-size: 1.08rem;
  line-height: 1.2;
  margin: 0.35rem 0 0.38rem;
}

.floating-card p,
.proof-copy,
.floating-card li {
  font-size: 0.84rem;
  color: rgba(247, 243, 235, 0.76);
  margin: 0;
}

.floating-card-kpi ul {
  margin: 0.65rem 0 0;
  padding-left: 1rem;
}

.glass-card,
.light-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(11, 21, 18, 0.08);
  color: var(--text-dark);
  box-shadow: 0 24px 60px rgba(36, 29, 20, 0.08);
}

.content-stack > * + * {
  margin-top: 1.15rem;
}

.lead-copy {
  font-size: 1.18rem;
  line-height: 1.75;
}

.pillars-row {
  margin-top: 0.8rem;
}

.pillar {
  height: 100%;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(19, 25, 23, 0.04);
  border: 1px solid rgba(19, 25, 23, 0.06);
}

.pillar span {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pillar p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.95rem;
}

.stat-panel {
  padding: 2rem;
  color: var(--text);
  background:
    radial-gradient(circle at 84% 14%, rgba(196, 160, 106, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(18, 33, 29, 0.98) 0%, rgba(12, 24, 21, 0.98) 100%);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat-item {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.stat-item strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  color: var(--accent-warm);
  line-height: 1;
}

.stat-item span,
.stat-note {
  color: rgba(247, 243, 235, 0.76);
}

.stat-note {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card {
  height: 100%;
  padding: 1.75rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.025) 100%),
    rgba(255, 255, 255, 0.02);
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(48, 180, 132, 0.32);
  background: rgba(255, 255, 255, 0.05);
}

.service-icon {
  width: 3.4rem;
  height: 3.4rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1.25rem;
  border-radius: 1.1rem;
  font-size: 1.3rem;
  color: var(--white);
  background: linear-gradient(135deg, rgba(48, 180, 132, 0.9), rgba(31, 122, 91, 0.9));
  box-shadow: 0 18px 32px rgba(31, 122, 91, 0.28);
}

.service-card h3,
.reason-card h3,
.process-card h3,
.portfolio-card h3,
.industry-card span,
.testimonial-meta strong,
.contact-label,
.site-footer h3 {
  font-family: "Syne", sans-serif;
  letter-spacing: -0.03em;
}

.service-card h3,
.reason-card h3,
.process-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.45rem;
}

.service-card p,
.reason-card p,
.process-card p {
  margin: 0;
  color: rgba(247, 243, 235, 0.72);
}

.sticky-card {
  position: sticky;
  top: 7rem;
  padding-right: 1rem;
}

.reason-card {
  height: 100%;
  padding: 1.4rem;
  border-color: rgba(11, 21, 18, 0.08);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 40px rgba(36, 29, 20, 0.08);
}

.reason-number,
.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
  background: rgba(48, 180, 132, 0.12);
}

.reason-card p {
  color: var(--muted-dark);
}

.portfolio-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(48, 180, 132, 0.08), transparent 24%),
    radial-gradient(circle at 90% 16%, rgba(196, 160, 106, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(11, 20, 17, 0.98) 0%, rgba(8, 18, 16, 1) 100%);
}

.portfolio-card {
  height: 100%;
  padding: 1.55rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.025) 100%),
    rgba(10, 20, 18, 0.92);
  position: relative;
  overflow: hidden;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(var(--case-rgb), 0.24), transparent 30%);
  pointer-events: none;
}

.portfolio-ai {
  --case-rgb: 48, 180, 132;
}

.portfolio-swiss {
  --case-rgb: 94, 133, 184;
}

.portfolio-concierge {
  --case-rgb: 196, 160, 106;
}

.portfolio-fashion {
  --case-rgb: 174, 129, 135;
}

.portfolio-travel {
  --case-rgb: 93, 168, 170;
}

.portfolio-impact {
  --case-rgb: 182, 136, 95;
}

.case-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.case-type,
.case-index,
.case-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-type {
  padding: 0.7rem 0.95rem;
  color: rgba(247, 243, 235, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.case-index {
  color: var(--accent-warm);
}

.case-title-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.case-mark {
  width: 4rem;
  height: 4rem;
  display: inline-grid;
  place-items: center;
  border-radius: 1.35rem;
  flex-shrink: 0;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, rgba(var(--case-rgb), 0.9), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.portfolio-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.8rem;
}

.case-title-wrap p,
.case-description {
  color: rgba(247, 243, 235, 0.74);
}

.case-title-wrap p {
  margin: 0;
}

.case-description {
  margin-bottom: 1.35rem;
}

.case-meta {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.25rem;
}

.case-meta div {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.case-meta span {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.55);
}

.case-meta strong {
  display: block;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.6;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.case-tags span {
  padding: 0.7rem 0.9rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.case-link i {
  transition: transform var(--transition);
}

.case-link:hover i {
  transform: translate(4px, -4px);
}

.industries-section {
  padding-top: clamp(4.5rem, 7vw, 6.5rem);
  padding-bottom: clamp(4.5rem, 7vw, 6.5rem);
}

.industry-card {
  height: 100%;
  padding: 1.35rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
}

.industry-card i {
  font-size: 1.35rem;
  color: var(--accent-warm);
}

.industry-card span {
  font-size: 1.1rem;
}

.process-row {
  position: relative;
}

.process-card {
  height: 100%;
  padding: 1.55rem;
  border-color: rgba(11, 21, 18, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(36, 29, 20, 0.08);
}

.process-card p {
  color: var(--muted-dark);
}

.faq-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(196, 160, 106, 0.14), transparent 24%),
    linear-gradient(180deg, #f7f1e8 0%, #f2eadf 100%);
  color: var(--text-dark);
}

.faq-heading {
  margin-bottom: 0;
}

.faq-stack {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 0;
  border: 1px solid rgba(19, 25, 23, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(36, 29, 20, 0.08);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 1.3rem 4.2rem 1.3rem 1.25rem;
  cursor: pointer;
  list-style: none;
  font-family: "Syne", sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(31, 122, 91, 0.08);
  color: var(--accent-deep);
  font-size: 1.1rem;
}

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

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--muted-dark);
  line-height: 1.7;
}

.testimonial-section {
  background:
    radial-gradient(circle at 14% 20%, rgba(48, 180, 132, 0.08), transparent 22%),
    radial-gradient(circle at 88% 16%, rgba(196, 160, 106, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(13, 24, 21, 0.98) 0%, rgba(8, 18, 16, 1) 100%);
}

.testimonial-heading {
  margin-bottom: 0;
}

.testimonial-slider {
  position: relative;
  padding: 2rem 4.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.025) 100%),
    rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.testimonial-track {
  min-height: 18rem;
  position: relative;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 420ms ease;
}

.testimonial-quote {
  margin: 0 0 2rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.testimonial-meta strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.testimonial-meta span {
  color: rgba(247, 243, 235, 0.72);
}

.testimonial-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  display: grid;
  place-items: center;
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition);
}

.testimonial-control:hover {
  transform: translateY(-50%) scale(1.04);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-prev {
  left: 1rem;
}

.testimonial-next {
  right: 1rem;
}

.testimonial-dots {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1rem;
}

.testimonial-dot {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transition: transform var(--transition), background-color var(--transition);
}

.testimonial-dot.active {
  background: var(--accent-bright);
  transform: scale(1.1);
}

.cta-section {
  padding-top: 0;
  margin-top: -1rem;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem;
  background:
    radial-gradient(circle at 90% 20%, rgba(196, 160, 106, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(18, 33, 29, 0.96), rgba(10, 22, 19, 0.96));
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-section {
  padding-bottom: clamp(4.8rem, 8vw, 7.2rem);
}

.contact-info-card,
.contact-form-card {
  height: 100%;
  padding: 1.9rem;
  border-color: rgba(11, 21, 18, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text-dark);
  box-shadow: 0 24px 58px rgba(36, 29, 20, 0.1);
}

.contact-info-card {
  background:
    radial-gradient(circle at 84% 12%, rgba(196, 160, 106, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(18, 33, 29, 0.98), rgba(12, 24, 21, 0.98));
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.08);
}

.contact-block + .contact-block {
  margin-top: 1.25rem;
}

.contact-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.contact-block a,
.contact-block p {
  margin: 0;
  font-size: 1rem;
  color: inherit;
  opacity: 0.84;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0 1.4rem;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition: transform var(--transition), background-color var(--transition);
}

.social-row a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.98rem 1.3rem;
  border-radius: 999px;
  background: #1faa71;
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(31, 170, 113, 0.26);
}

.btn-whatsapp:hover {
  color: var(--white);
}

.form-label {
  font-weight: 700;
  color: var(--text-dark);
}

.form-control,
.form-select {
  border: 1px solid rgba(19, 25, 23, 0.1);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  background-color: rgba(19, 25, 23, 0.03);
  color: var(--text-dark);
  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(31, 122, 91, 0.36);
  box-shadow: 0 0 0 0.22rem rgba(31, 122, 91, 0.12);
  background-color: rgba(255, 255, 255, 0.96);
}

.form-control::placeholder {
  color: #7e887f;
}

.form-message {
  min-height: 1.5rem;
  font-weight: 600;
  color: var(--accent);
}

.site-footer {
  padding: 4rem 0 2rem;
  background: rgba(7, 16, 14, 0.98);
  border-top: 1px solid var(--line);
}

html[lang="ar"] body {
  font-family: "Cairo", "Manrope", sans-serif;
}

html[lang="ar"] .section-heading h2,
html[lang="ar"] .hero-copy h1,
html[lang="ar"] .sticky-card h2,
html[lang="ar"] .cta-banner h2,
html[lang="ar"] .portfolio-hero-copy h1,
html[lang="ar"] .portfolio-stage-top h2,
html[lang="ar"] .service-card h3,
html[lang="ar"] .reason-card h3,
html[lang="ar"] .process-card h3,
html[lang="ar"] .portfolio-card h3,
html[lang="ar"] .overview-card h3,
html[lang="ar"] .project-copy h2,
html[lang="ar"] .project-block h3,
html[lang="ar"] .industry-card span,
html[lang="ar"] .testimonial-meta strong,
html[lang="ar"] .contact-label,
html[lang="ar"] .site-footer h3,
html[lang="ar"] .navbar-brand,
html[lang="ar"] .footer-brand,
html[lang="ar"] .need-title {
  font-family: "Cairo", "Manrope", sans-serif;
  letter-spacing: 0;
}

html[lang="ar"] .hero-copy h1 {
  max-width: 15ch;
  line-height: 1.15;
}

html[dir="rtl"] .eyebrow,
html[dir="rtl"] .section-kicker {
  flex-direction: row-reverse;
}

html[dir="rtl"] .eyebrow-line,
html[dir="rtl"] .section-kicker::before,
html[dir="rtl"] .audience-label::before,
html[dir="rtl"] .needs-label::before {
  background: linear-gradient(270deg, var(--accent-bright), transparent);
}

html[dir="rtl"] .navbar-nav .nav-link::after {
  left: auto;
  right: 50%;
  transform: translateX(50%) scale(0);
}

html[dir="rtl"] .navbar-nav .nav-link.active::after {
  transform: translateX(50%) scale(1);
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .sticky-card,
html[dir="rtl"] .section-heading:not(.text-center),
html[dir="rtl"] .contact-info-card,
html[dir="rtl"] .contact-form-card,
html[dir="rtl"] .site-footer,
html[dir="rtl"] .portfolio-card,
html[dir="rtl"] .glass-card,
html[dir="rtl"] .stat-panel {
  text-align: right;
}

html[dir="rtl"] .needs-head,
html[dir="rtl"] .hero-proof-strip,
html[dir="rtl"] .fit-tabs,
html[dir="rtl"] .fit-points,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .audience-pills,
html[dir="rtl"] .case-tags,
html[dir="rtl"] .social-row,
html[dir="rtl"] .cta-actions {
  direction: rtl;
}

html[dir="rtl"] .form-control,
html[dir="rtl"] .form-select {
  text-align: right;
}

html[dir="rtl"] .fit-label::before {
  background: linear-gradient(270deg, var(--accent-warm), transparent);
}

html[dir="rtl"] .faq-item summary {
  padding: 1.3rem 1.25rem 1.3rem 4.2rem;
}

html[dir="rtl"] .faq-item summary::after {
  right: auto;
  left: 1.2rem;
}

html[dir="rtl"] .testimonial-prev {
  left: auto;
  right: 1rem;
}

html[dir="rtl"] .testimonial-next {
  right: auto;
  left: 1rem;
}

html[dir="rtl"] .case-link i,
html[dir="rtl"] .testimonial-control i {
  transform: scaleX(-1);
}

html[dir="rtl"] .case-link:hover i {
  transform: translate(-4px, -4px) scaleX(-1);
}

.footer-copy {
  margin-top: 1.25rem;
  max-width: 32ch;
  color: rgba(247, 243, 235, 0.68);
}

.site-footer h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--white);
}

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

.footer-links li + li {
  margin-top: 0.7rem;
}

.footer-links a,
.footer-links span {
  color: rgba(247, 243, 235, 0.72);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: rgba(247, 243, 235, 0.56);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1199.98px) {
  .studio-stage {
    min-height: 35rem;
  }

  .floating-card-metrics,
  .floating-card-proof,
  .floating-card-kpi {
    position: relative;
    width: auto;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    margin-top: 1rem;
  }

  .sticky-card {
    position: static;
    padding-right: 0;
  }

  .cta-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (min-width: 992px) and (max-width: 1279.98px) {
  .navbar-nav {
    gap: 0.35rem;
  }

  .navbar-nav .nav-link {
    padding: 0.42rem;
    font-size: 0.92rem;
  }

  .nav-actions {
    gap: 0.6rem;
  }

  .nav-cta {
    padding: 0.76rem 1rem;
    font-size: 0.88rem;
  }

  .lang-btn {
    min-width: 2.35rem;
    padding: 0.48rem 0.62rem;
  }
}

@media (max-width: 991.98px) {
  .studio-navbar {
    background: rgba(8, 18, 16, 0.9);
    border-color: var(--line);
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem 0 0.2rem;
    border-top: 1px solid var(--line);
  }

  .navbar-nav {
    gap: 0.2rem;
    margin-bottom: 1rem;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .language-switcher {
    width: 100%;
    justify-content: center;
  }

  .hero-section {
    padding-top: 8rem;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .studio-stage {
    min-height: auto;
  }

  .stage-head {
    flex-direction: column;
  }

  .stage-grid,
  .case-meta,
  .stat-grid {
    grid-template-columns: 1fr;
  }

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

  .testimonial-slider {
    padding: 1.6rem 1.4rem 1.3rem;
  }

  .testimonial-track {
    min-height: auto;
  }

  .testimonial-control {
    position: static;
    transform: none;
    margin-top: 1rem;
  }

  .testimonial-control:hover {
    transform: scale(1.04);
  }

  .testimonial-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .testimonial-prev,
  .testimonial-next {
    order: 2;
  }

  .testimonial-prev {
    grid-column: 1;
    justify-self: start;
  }

  .testimonial-next {
    grid-column: 2;
    justify-self: end;
  }

  .testimonial-track,
  .testimonial-dots {
    grid-column: 1 / -1;
  }

  .testimonial-dots {
    order: 3;
  }
}

.portfolio-page-body {
  background:
    radial-gradient(circle at 14% 18%, rgba(48, 180, 132, 0.12), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(196, 160, 106, 0.12), transparent 24%),
    linear-gradient(180deg, #081210 0%, #0d1815 34%, #081210 100%);
}

.portfolio-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  overflow: clip;
}

.portfolio-hero-copy h1,
.portfolio-stage-top h2,
.project-copy h2 {
  font-family: "Syne", sans-serif;
  letter-spacing: -0.04em;
}

.portfolio-hero-copy h1 {
  font-size: clamp(2.8rem, 5.2vw, 4.9rem);
  line-height: 1.02;
  margin: 0 0 1.1rem;
  max-width: 12ch;
}

.portfolio-hero-text {
  font-size: 1.05rem;
  max-width: 60ch;
  color: rgba(247, 243, 235, 0.82);
}

.portfolio-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.portfolio-hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 243, 235, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
}

.portfolio-stage {
  position: relative;
}

.portfolio-stage-main {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(48, 180, 132, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(13, 24, 21, 0.88);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.portfolio-stage-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.portfolio-stage-top h2 {
  margin: 0.4rem 0 0;
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
  line-height: 1.08;
}

.portfolio-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.portfolio-stat-card {
  min-height: 100%;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.portfolio-stat-card strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Syne", sans-serif;
  font-size: 1.45rem;
  color: var(--accent-warm);
  line-height: 1;
}

.portfolio-stat-card span {
  color: rgba(247, 243, 235, 0.76);
}

.portfolio-overview-section {
  position: relative;
  z-index: 1;
}

.overview-card {
  height: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(19, 25, 23, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(36, 29, 20, 0.08);
}

.overview-card h3 {
  margin: 0 0 0.75rem;
  font-family: "Syne", sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.overview-card p {
  margin: 0;
  color: var(--muted-dark);
}

.portfolio-detail-section {
  background:
    radial-gradient(circle at 10% 16%, rgba(48, 180, 132, 0.08), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(196, 160, 106, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(11, 20, 17, 0.99) 0%, rgba(8, 18, 16, 1) 100%);
}

.project-listing {
  display: grid;
  gap: 1.8rem;
}

.project-detail {
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.025) 100%),
    rgba(10, 20, 18, 0.88);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.project-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(var(--project-accent), 0.22), transparent 28%);
  pointer-events: none;
}

.project-rezzyai { --project-accent: 48, 180, 132; }
.project-baustellen { --project-accent: 111, 156, 214; }
.project-medrak { --project-accent: 198, 161, 111; }
.project-noor { --project-accent: 208, 156, 167; }
.project-landofjourney { --project-accent: 89, 174, 177; }
.project-failkhair { --project-accent: 192, 138, 88; }

.project-copy,
.project-visual {
  position: relative;
  z-index: 1;
}

.project-topline {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
}

.project-index,
.project-type,
.project-preview-caption {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-index {
  color: var(--accent-warm);
}

.project-type {
  padding: 0.62rem 0.9rem;
  color: rgba(247, 243, 235, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.project-copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
}

.project-summary {
  margin: 0 0 1.15rem;
  color: rgba(247, 243, 235, 0.78);
  font-size: 1rem;
  line-height: 1.75;
}

.project-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.15rem;
}

.project-meta-card {
  padding: 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.project-meta-card span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.58);
}

.project-meta-card strong {
  display: block;
  color: var(--white);
  line-height: 1.55;
}

.project-block + .project-block {
  margin-top: 1rem;
}

.project-block h3 {
  margin: 0 0 0.55rem;
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.project-block p,
.project-list {
  margin: 0;
  color: rgba(247, 243, 235, 0.76);
  line-height: 1.7;
}

.project-list {
  padding-left: 1.1rem;
}

.project-list li + li {
  margin-top: 0.45rem;
}

.project-cta {
  margin-top: 1.2rem;
}

.project-visual {
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(255, 255, 255, 0.03);
}

.project-iframe {
  width: 100%;
  height: 34rem;
  border: 0;
  border-radius: var(--radius-lg);
  background: #0d1815;
  box-shadow: 0 24px 44px rgba(2, 12, 10, 0.22);
}

.project-preview-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.85rem;
}

.project-preview-caption {
  color: rgba(247, 243, 235, 0.62);
}

.project-live-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.project-live-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.portfolio-bottom-cta {
  padding-top: 0;
  margin-top: -1rem;
}

html[dir="rtl"] .portfolio-hero-chips,
html[dir="rtl"] .project-topline,
html[dir="rtl"] .project-meta-grid {
  direction: rtl;
}

html[dir="rtl"] .project-copy,
html[dir="rtl"] .overview-card,
html[dir="rtl"] .portfolio-hero-copy,
html[dir="rtl"] .portfolio-stage-main {
  text-align: right;
}

html[dir="rtl"] .project-preview-meta {
  direction: rtl;
}

html[dir="rtl"] .project-list {
  padding-left: 0;
  padding-right: 1.1rem;
}

@media (max-width: 991.98px) {
  .portfolio-hero {
    min-height: auto;
    padding-top: 8rem;
  }

  .portfolio-stage-top {
    flex-direction: column;
  }

  .portfolio-stat-grid,
  .project-meta-grid {
    grid-template-columns: 1fr;
  }

  .project-iframe {
    height: 26rem;
  }
}

@media (max-width: 575.98px) {
  .needs-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-stat-grid,
  .fit-tabs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .section-shell {
    padding: 4.5rem 0;
  }

  .hero-actions,
  .hero-proof-strip,
  .portfolio-hero-chips,
  .cta-actions,
  .social-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .btn-whatsapp,
  .social-row a,
  .need-card {
    width: 100%;
    justify-content: center;
  }

  .needs-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .stage-main,
  .service-card,
  .reason-card,
  .portfolio-card,
  .portfolio-stage-main,
  .process-card,
  .overview-card,
  .project-detail,
  .testimonial-slider,
  .contact-info-card,
  .contact-form-card,
  .cta-banner,
  .glass-card,
  .stat-panel,
  .needs-panel {
    padding: 1.4rem;
    border-radius: 1.6rem;
  }

  .case-title-wrap {
    align-items: flex-start;
  }

  .case-mark {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 1rem;
  }

  .faq-item summary {
    font-size: 1rem;
  }

  .project-visual {
    padding: 0.8rem;
  }

  .project-preview-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .project-live-link {
    width: 100%;
  }

  .project-iframe {
    height: 20rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
